-- phpMyAdmin SQL Dump
-- version 4.9.5
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Generation Time: Nov 22, 2020 at 07:59 AM
-- Server version: 5.7.30
-- PHP Version: 7.4.9

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `wordpress`
--

-- --------------------------------------------------------

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

CREATE TABLE `wp_actionscheduler_actions` (
  `action_id` bigint(20) UNSIGNED NOT NULL,
  `hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_520_ci,
  `group_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `attempts` int(11) NOT NULL DEFAULT '0',
  `last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_actionscheduler_actions` (`action_id`, `hook`, `status`, `scheduled_date_gmt`, `scheduled_date_local`, `args`, `schedule`, `group_id`, `attempts`, `last_attempt_gmt`, `last_attempt_local`, `claim_id`, `extended_args`) VALUES
(10, 'action_scheduler/migration_hook', 'complete', '2020-11-10 03:46:14', '2020-11-10 03:46:14', '[]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1604979974;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1604979974;}', 1, 1, '2020-11-10 03:46:19', '2020-11-10 03:46:19', 0, NULL),
(11, 'wc-admin_import_orders', 'complete', '2020-11-10 12:58:30', '2020-11-10 12:58:30', '[75]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1605013110;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1605013110;}', 2, 1, '2020-11-10 12:59:06', '2020-11-10 22:59:06', 0, NULL);

-- --------------------------------------------------------

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

CREATE TABLE `wp_actionscheduler_claims` (
  `claim_id` bigint(20) UNSIGNED NOT NULL,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_actionscheduler_groups` (
  `group_id` bigint(20) UNSIGNED NOT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_actionscheduler_groups` (`group_id`, `slug`) VALUES
(1, 'action-scheduler-migration'),
(2, 'wc-admin-data');

-- --------------------------------------------------------

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

CREATE TABLE `wp_actionscheduler_logs` (
  `log_id` bigint(20) UNSIGNED NOT NULL,
  `action_id` bigint(20) UNSIGNED NOT NULL,
  `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_actionscheduler_logs` (`log_id`, `action_id`, `message`, `log_date_gmt`, `log_date_local`) VALUES
(1, 10, 'action created', '2020-11-10 03:45:14', '2020-11-10 03:45:14'),
(2, 10, 'action started via Async Request', '2020-11-10 03:46:19', '2020-11-10 03:46:19'),
(3, 10, 'action complete via Async Request', '2020-11-10 03:46:19', '2020-11-10 03:46:19'),
(4, 11, 'action created', '2020-11-10 12:58:25', '2020-11-10 12:58:25'),
(5, 11, 'action started via WP Cron', '2020-11-10 12:59:06', '2020-11-10 12:59:06'),
(6, 11, 'action complete via WP Cron', '2020-11-10 12:59:06', '2020-11-10 12:59:06');

-- --------------------------------------------------------

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

CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) UNSIGNED NOT NULL,
  `comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2020-11-10 03:20:10', '2020-11-10 03:20:10', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_cubeportfolio`
--

CREATE TABLE `wp_cubeportfolio` (
  `id` int(10) UNSIGNED NOT NULL,
  `active` tinyint(1) UNSIGNED NOT NULL DEFAULT '1',
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `customcss` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `options` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `loadMorehtml` text COLLATE utf8mb4_unicode_520_ci,
  `template` text COLLATE utf8mb4_unicode_520_ci,
  `filtershtml` text COLLATE utf8mb4_unicode_520_ci,
  `googlefonts` text COLLATE utf8mb4_unicode_520_ci,
  `popup` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `jsondata` mediumtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wp_cubeportfolio`
--

INSERT INTO `wp_cubeportfolio` (`id`, `active`, `name`, `type`, `customcss`, `options`, `loadMorehtml`, `template`, `filtershtml`, `googlefonts`, `popup`, `jsondata`) VALUES
(1, 0, 'Masonry Portfolio No Gap', 'masonry', '{\"wrapcss\":\"#cbpw-wrap1 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid1 .cbp-l-caption-title {color:#333333;background-color:transparent;font-size:14px;font-family:Open Sans,Arial;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:uppercase;}#cbpw-grid1 .cbp-l-caption-desc {color:#aaa;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid1 .cbp-caption-activeWrap {background-color:rgba(255, 255, 255,0.9);}\",\"filterscss\":\"#cbpw-filters1 .cbp-filter-item {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#cdcdcd;border-radius:0;color:#adadad;font-size:11px;font-family:Montserrat,sans-serif;font-weight:300;font-style:normal;line-height:20px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}#cbpw-filters1 .cbp-filter-item:hover {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#CDCDCD;border-radius:0;color:#333333;font-size:11px;font-family:Montserrat,sans-serif;font-weight:300;font-style:normal;line-height:30px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}#cbpw-filters1 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#6C7A89;border-radius:0;color:#333;font-size:11px;font-family:Montserrat,sans-serif;font-weight:300;font-style:normal;line-height:30px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}#cbpw-filters1 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#6C7A89;border-radius:0;color:#333333;font-size:11px;font-family:Montserrat,sans-serif;font-weight:300;font-style:normal;line-height:30px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}\",\"loadMorecss\":\"#cbpw-loadMore1 .cbp-l-loadMore-link {color:#7E7B7B;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore1 .cbp-l-loadMore-link:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore1 .cbp-l-loadMore-loading {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore1 .cbp-l-loadMore-loading:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore1 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore1 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage1 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage1 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters1\",\"loadMore\":\"\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":true,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"fadeOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":false,\"gapHorizontal\":0,\"gapVertical\":0,\"caption\":\"zoom\",\"displayType\":\"fadeIn\",\"displayTypeSpeed\":400,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"top\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"\"}', '', '<div id=\"cbpw-wrap1\"><div id=\"cbpw-filters1\" class=\"cbp-l-filters-alignLeft des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid1\" class=\"cbp-l-grid-masonry cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All</div>\n<div data-filter=\".web-design\" class=\"cbp-filter-item\">Web Design</div>\n<div data-filter=\".graphic\" class=\"cbp-filter-item\">Graphic</div>\n<div data-filter=\".mockup\" class=\"cbp-filter-item\">Web Design</div>\n<div data-filter=\".logos\" class=\"cbp-filter-item\">Logos</div>\n<div data-filter=\".branding\" class=\"cbp-filter-item\">Branding</div>\n', '[{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"700normal,400normal\"},{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"300normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(5, 1, 'Grid Ajax 3 Columns', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap5 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid5 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:13px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:uppercase;}#cbpw-grid5 .cbp-l-caption-desc {color:#5c5c5c;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid5 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"#cbpw-filters5 .cbp-filter-item {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#f0f0f0;font-size:11px;font-family:Open Sans,sans-serif;font-weight:600;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters5 .cbp-filter-item:hover {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#ffffff;font-size:11px;font-family:Open Sans,sans-serif;font-weight:600;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters5 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#ffffff;font-size:11px;font-family:Open Sans,sans-serif;font-weight:700;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters5 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#ffffff;font-size:11px;font-family:Open Sans,sans-serif;font-weight:700;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters5 .cbp-filter-counter {background-color:#626161;color:#fff;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:18px;padding:4px 0px 4px 0px;}#cbpw-filters5 .cbp-filter-counter:after {border-color:#626161 transparent;}\",\"loadMorecss\":\"#cbpw-loadMore5 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore5 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore5 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore5 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore5 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore5 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage5 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage5 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters5\",\"loadMore\":\"#cbpw-loadMore5\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"flipOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":3},{\"width\":1170,\"cols\":3},{\"width\":1024,\"cols\":3},{\"width\":960,\"cols\":3},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":10,\"gapVertical\":10,\"caption\":\"overlayBottomPush\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"300:267\",\"displayItemsLoadMore\":3}', '<div class=\"cbp-l-loadMore-button\"><a href=\"ajax/loadMore.html\" class=\"cbp-l-loadMore-link\" rel=\"nofollow\"><span class=\"cbp-l-loadMore-defaultText\">LOAD MORE</span> <span class=\"cbp-l-loadMore-loadingText\">LOADING...</span><span class=\"cbp-l-loadMore-noMoreLoading\">NO MORE WORKS</span></a></div>', '<div id=\"cbpw-wrap5\"><div id=\"cbpw-filters5\" class=\"cbp-l-filters-alignCenter des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid5\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div><div id=\"cbpw-loadMore5\" class=\"\">{{loadMoreContent}}</div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All</div>\n/<div data-filter=\".slider\" class=\"cbp-filter-item\">Slider</div>\n/<div data-filter=\".video\" class=\"cbp-filter-item\">Video</div>\n/<div data-filter=\".gallery\" class=\"cbp-filter-item\">Gallery</div>\n/<div data-filter=\".image\" class=\"cbp-filter-item\">Image</div>\n', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal,600normal,700normal\"}]', '[{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"}]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(13, 1, 'Mixed Projects 4 Columns', 'juicy-projects', '{\"wrapcss\":\"#cbpw-wrap13 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid13 .cbp-l-grid-projects-title {color:#474747;background-color:transparent;font-size:14px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:20px 0px 0px 10px;text-transform:capitalize;}#cbpw-grid13 .cbp-l-grid-projects-desc {color:#bbbfbf;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:18px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 10px;text-transform:none;}#cbpw-grid13 .cbp-l-caption-buttonLeft {color:#FFFFFF;background-color:transparent;font-size:11px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;text-align:center;text-transform:none;padding:0px 10px 0px 10px;margin:10px 10px 4px 10px;}#cbpw-grid13 .cbp-l-caption-buttonRight {color:#FFFFFF;background-color:transparent;font-size:11px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;text-align:center;text-transform:none;padding:0px 10px 0px 10px;margin:10px 10px 4px 10px;}#cbpw-grid13 .cbp-caption {margin-bottom:0;}#cbpw-grid13 .cbp-caption-activeWrap {background-color:rgba(16,16,16,0.95);}\",\"filterscss\":\"#cbpw-filters13 .cbp-l-filters-dropdownWrap {background-color:#101010;}#cbpw-filters13 .cbp-l-filters-dropdownHeader {background-color:transparent;color:#FFFFFF;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:38px;margin:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters13 .cbp-filter-item {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#212121;color:#b3b3b3;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters13 .cbp-filter-item:hover {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#212121;color:#e6e6e6;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters13 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#212121;color:#FFFFFF;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters13 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#212121;color:#FFFFFF;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}\",\"loadMorecss\":\"#cbpw-loadMore13 .cbp-l-loadMore-link {color:#7E7B7B;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore13 .cbp-l-loadMore-link:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore13 .cbp-l-loadMore-loading {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore13 .cbp-l-loadMore-loading:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore13 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore13 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage13 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage13 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters13\",\"loadMore\":\"\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"quicksand\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":4},{\"width\":1170,\"cols\":4},{\"width\":1024,\"cols\":4},{\"width\":960,\"cols\":4},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":2}],\"gapHorizontal\":40,\"gapVertical\":40,\"caption\":\"zoom\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"top\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"250:218\"}', '', '<div id=\"cbpw-wrap13\"><div id=\"cbpw-filters13\" class=\"cbp-l-filters-dropdown des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid13\" class=\"cbp-l-grid-projects cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '<div class=\"cbp-l-filters-dropdownWrap\"><div class=\"cbp-l-filters-dropdownHeader\">Sort Gallery</div><div class=\"cbp-l-filters-dropdownList\"><div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All <div class=\"cbp-filter-counter-wrap\">(<div class=\"cbp-filter-counter\"></div> items)</div></div>\n<div data-filter=\".mockup\" class=\"cbp-filter-item\">Web Design <div class=\"cbp-filter-counter-wrap\">(<div class=\"cbp-filter-counter\"></div> items)</div></div>\n<div data-filter=\".motion\" class=\"cbp-filter-item\">Motion <div class=\"cbp-filter-counter-wrap\">(<div class=\"cbp-filter-counter\"></div> items)</div></div>\n<div data-filter=\".logos\" class=\"cbp-filter-item\">Logos <div class=\"cbp-filter-counter-wrap\">(<div class=\"cbp-filter-counter\"></div> items)</div></div>\n<div data-filter=\".branding\" class=\"cbp-filter-item\">Branding <div class=\"cbp-filter-counter-wrap\">(<div class=\"cbp-filter-counter\"></div> items)</div></div>\n</div></div>', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(20, 0, 'Team-Slider', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap20 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid20 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:12px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:left;padding:0px 0px 0px 0px;margin:0px 0px 0px -10px;text-transform:uppercase;}#cbpw-grid20 .cbp-l-caption-desc {color:#5c5c5c;background-color:transparent;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:left;padding:0px 0px 0px 0px;margin:0px 0px 0px -10px;text-transform:capitalize;}#cbpw-grid20 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"\",\"loadMorecss\":\"#cbpw-loadMore20 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore20 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore20 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore20 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore20 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore20 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage20 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage20 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"\",\"loadMore\":\"\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"slider\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":false,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"frontRow\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":4},{\"width\":1170,\"cols\":4},{\"width\":1024,\"cols\":4},{\"width\":960,\"cols\":4},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":40,\"gapVertical\":40,\"caption\":\"overlayRightAlong\",\"displayType\":\"fadeIn\",\"displayTypeSpeed\":400,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"top\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"250:180\"}', '', '<div id=\"cbpw-wrap20\"><div id=\"cbpw-grid20\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[{\"link\":\"http://localhost:8888/wordpress/portfolio/blake-web-site-2/\",\"html\":\"\",\"type\":\"cbp-singlePage\"}]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(23, 1, 'Masonry Portfolio No Gap Box', 'masonry', '{\"wrapcss\":\"#cbpw-wrap23 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid23 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:14px;font-family:Montserrat;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:uppercase;}#cbpw-grid23 .cbp-l-caption-desc {color:#aaa;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid23 .cbp-caption-activeWrap {background-color:rgba(0, 0, 0, 0.8);}\",\"filterscss\":\"#cbpw-filters23 .cbp-filter-item {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#cdcdcd;border-radius:0;color:#adadad;font-size:13px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:20px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}#cbpw-filters23 .cbp-filter-item:hover {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#CDCDCD;border-radius:0;color:#333333;font-size:13px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}#cbpw-filters23 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#6C7A89;border-radius:0;color:#333;font-size:13px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}#cbpw-filters23 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#6C7A89;border-radius:0;color:#333333;font-size:13px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}\",\"loadMorecss\":\"#cbpw-loadMore23 .cbp-l-loadMore-link {color:#7E7B7B;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore23 .cbp-l-loadMore-link:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore23 .cbp-l-loadMore-loading {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore23 .cbp-l-loadMore-loading:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore23 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore23 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage23 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage23 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters23\",\"loadMore\":\"\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":true,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"fadeOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":3},{\"width\":1170,\"cols\":3},{\"width\":1024,\"cols\":3},{\"width\":960,\"cols\":3},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":2}],\"gapHorizontal\":0,\"gapVertical\":0,\"caption\":\"zoom\",\"displayType\":\"fadeIn\",\"displayTypeSpeed\":400,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"top\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"\"}', '', '<div id=\"cbpw-wrap23\"><div id=\"cbpw-filters23\" class=\"cbp-l-filters-alignLeft des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid23\" class=\"cbp-l-grid-masonry cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All</div>\n<div data-filter=\".web-design\" class=\"cbp-filter-item\">Web Design</div>\n<div data-filter=\".graphic\" class=\"cbp-filter-item\">Graphic</div>\n<div data-filter=\".mockup\" class=\"cbp-filter-item\">Web Design</div>\n<div data-filter=\".logos\" class=\"cbp-filter-item\">Logos</div>\n<div data-filter=\".branding\" class=\"cbp-filter-item\">Branding</div>\n', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(24, 1, 'Masonry Portfolio Small Gap', 'masonry', '{\"wrapcss\":\"#cbpw-wrap24 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid24 .cbp-l-caption-title {color:#f2f2f2;background-color:transparent;font-size:13px;font-family:Montserrat;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:uppercase;}#cbpw-grid24 .cbp-l-caption-desc {color:#aaa;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid24 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"#cbpw-filters24 .cbp-filter-item {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#cdcdcd;border-radius:0;color:#adadad;font-size:11px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:20px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}#cbpw-filters24 .cbp-filter-item:hover {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#CDCDCD;border-radius:0;color:#333333;font-size:11px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}#cbpw-filters24 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#6C7A89;border-radius:0;color:#333;font-size:11px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}#cbpw-filters24 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:1px 1px 1px 1px;border-style:none;border-color:#6C7A89;border-radius:0;color:#333333;font-size:11px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;margin:0px 8px 10px 0px;padding:0px 13px 0px 13px;text-transform:uppercase;}\",\"loadMorecss\":\"#cbpw-loadMore24 .cbp-l-loadMore-link {color:#7E7B7B;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore24 .cbp-l-loadMore-link:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore24 .cbp-l-loadMore-loading {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore24 .cbp-l-loadMore-loading:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore24 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore24 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage24 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage24 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters24\",\"loadMore\":\"\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":true,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"fadeOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":false,\"gapHorizontal\":5,\"gapVertical\":5,\"caption\":\"overlayBottom\",\"displayType\":\"fadeIn\",\"displayTypeSpeed\":400,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"top\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"\"}', '', '<div id=\"cbpw-wrap24\"><div id=\"cbpw-filters24\" class=\"cbp-l-filters-alignLeft des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid24\" class=\"cbp-l-grid-masonry cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All</div>\n<div data-filter=\".web-design\" class=\"cbp-filter-item\">Web Design</div>\n<div data-filter=\".graphic\" class=\"cbp-filter-item\">Graphic</div>\n<div data-filter=\".mockup\" class=\"cbp-filter-item\">Web Design</div>\n<div data-filter=\".logos\" class=\"cbp-filter-item\">Logos</div>\n<div data-filter=\".branding\" class=\"cbp-filter-item\">Branding</div>\n', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(26, 1, 'Masonry Portfolio Big Gap', 'masonry', '{\"wrapcss\":\"#cbpw-wrap26 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid26 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:12px;font-family:Montserrat;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:uppercase;}#cbpw-grid26 .cbp-l-caption-desc {color:#aaa;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid26 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"#cbpw-filters26 .cbp-filter-item {background-color:#101010;border-color:#2b2b2b;color:#919191;font-size:11px;font-family:Open Sans,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 18px 0px 18px;text-transform:uppercase;}#cbpw-filters26 .cbp-filter-item:hover {background-color:#101010;border-color:#2b2b2b;color:#f2f2f2;font-size:11px;font-family:Open Sans,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 18px 0px 18px;text-transform:uppercase;}#cbpw-filters26 .cbp-filter-item.cbp-filter-item-active {background-color:#101010;border-color:#2b2b2b;color:#FFFFFF;font-size:11px;font-family:Open Sans,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 18px 0px 18px;text-transform:uppercase;}#cbpw-filters26 .cbp-filter-item.cbp-filter-item-active:hover {background-color:#101010;border-color:#2b2b2b;color:#FFFFFF;font-size:11px;font-family:Open Sans,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 18px 0px 18px;text-transform:uppercase;}\",\"loadMorecss\":\"#cbpw-loadMore26 .cbp-l-loadMore-link {color:#7E7B7B;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore26 .cbp-l-loadMore-link:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore26 .cbp-l-loadMore-loading {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore26 .cbp-l-loadMore-loading:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore26 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore26 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage26 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage26 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters26\",\"loadMore\":\"\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":true,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"fadeOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":false,\"gapHorizontal\":20,\"gapVertical\":20,\"caption\":\"pushDown\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"top\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"\"}', '', '<div id=\"cbpw-wrap26\"><div id=\"cbpw-filters26\" class=\"cbp-l-filters-list des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid26\" class=\"cbp-l-grid-masonry cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-l-filters-list-first cbp-filter-item-active\">All</div>\n<div data-filter=\".web-design\" class=\"cbp-filter-item\">Web Design</div>\n<div data-filter=\".graphic\" class=\"cbp-filter-item\">Graphic</div>\n<div data-filter=\".mockup\" class=\"cbp-filter-item\">Web Design</div>\n<div data-filter=\".logos\" class=\"cbp-filter-item\">Logos</div>\n<div data-filter=\".branding\" class=\"cbp-filter-item  cbp-l-filters-list-last\">Branding</div>\n', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal,700normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}');
INSERT INTO `wp_cubeportfolio` (`id`, `active`, `name`, `type`, `customcss`, `options`, `loadMorehtml`, `template`, `filtershtml`, `googlefonts`, `popup`, `jsondata`) VALUES
(27, 1, 'Masonry Portfolio Big Gap Box', 'masonry', '{\"wrapcss\":\"#cbpw-wrap27 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid27 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:14px;font-family:Montserrat;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:uppercase;}#cbpw-grid27 .cbp-l-caption-desc {color:#aaa;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid27 .cbp-caption-activeWrap {background-color:rgba(0, 0, 0,0.95);}\",\"filterscss\":\"#cbpw-filters27 .cbp-l-filters-dropdownWrap {background-color:#101010;}#cbpw-filters27 .cbp-l-filters-dropdownHeader {background-color:transparent;color:#FFFFFF;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:38px;margin:0px 17px 0px 17px;text-transform:none;}#cbpw-filters27 .cbp-filter-item {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#2b2b2b;color:#b3b3b3;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:none;}#cbpw-filters27 .cbp-filter-item:hover {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#2b2b2b;color:#e6e6e6;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:none;}#cbpw-filters27 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#2b2b2b;color:#FFFFFF;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:none;}#cbpw-filters27 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#595959;color:#FFFFFF;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:none;}\",\"loadMorecss\":\"#cbpw-loadMore27 .cbp-l-loadMore-link {color:#7E7B7B;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore27 .cbp-l-loadMore-link:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore27 .cbp-l-loadMore-loading {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore27 .cbp-l-loadMore-loading:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore27 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore27 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage27 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage27 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters27\",\"loadMore\":\"\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":true,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"fadeOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":3},{\"width\":1170,\"cols\":3},{\"width\":1024,\"cols\":3},{\"width\":960,\"cols\":3},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":20,\"gapVertical\":20,\"caption\":\"zoom\",\"displayType\":\"fadeIn\",\"displayTypeSpeed\":400,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"top\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"\"}', '', '<div id=\"cbpw-wrap27\"><div id=\"cbpw-filters27\" class=\"cbp-l-filters-dropdown des-align-left\">{{filtersContent}}</div><div id=\"cbpw-grid27\" class=\"cbp-l-grid-masonry cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '<div class=\"cbp-l-filters-dropdownWrap\"><div class=\"cbp-l-filters-dropdownHeader\">PORTFOLIO FILTER</div><div class=\"cbp-l-filters-dropdownList\"><div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All</div>\n<div data-filter=\".web-design\" class=\"cbp-filter-item\">Web Design</div>\n<div data-filter=\".graphic\" class=\"cbp-filter-item\">Graphic</div>\n<div data-filter=\".mockup\" class=\"cbp-filter-item\">Web Design</div>\n<div data-filter=\".logos\" class=\"cbp-filter-item\">Logos</div>\n<div data-filter=\".branding\" class=\"cbp-filter-item\">Branding</div>\n</div></div>', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(28, 1, 'Grid Ajax 2 Columns', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap28 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid28 .cbp-l-caption-title {color:#f0f0f0;background-color:transparent;font-size:13px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:uppercase;}#cbpw-grid28 .cbp-l-caption-desc {color:#bfbfbf;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid28 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"#cbpw-filters28 .cbp-l-filters-dropdownWrap {background-color:#101010;}#cbpw-filters28 .cbp-l-filters-dropdownHeader {background-color:transparent;color:#FFFFFF;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:38px;margin:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters28 .cbp-filter-item {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#222222;color:#b3b3b3;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters28 .cbp-filter-item:hover {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#222222;color:#e6e6e6;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters28 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#222222;color:#FFFFFF;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters28 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#222222;color:#FFFFFF;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}\",\"loadMorecss\":\"#cbpw-loadMore28 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore28 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore28 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore28 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore28 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore28 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage28 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage28 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters28\",\"loadMore\":\"#cbpw-loadMore28\",\"loadMoreAction\":\"auto\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"flipOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":2},{\"width\":1170,\"cols\":2},{\"width\":1024,\"cols\":2},{\"width\":960,\"cols\":2},{\"width\":778,\"cols\":2},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":10,\"gapVertical\":10,\"caption\":\"overlayBottom\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"460:324\",\"displayItemsLoadMore\":3}', '<div class=\"cbp-l-loadMore-button\"><a href=\"ajax/loadMore.html\" class=\"cbp-l-loadMore-link\" rel=\"nofollow\"><span class=\"cbp-l-loadMore-defaultText\">LOAD MORE</span> <span class=\"cbp-l-loadMore-loadingText\">LOADING...</span><span class=\"cbp-l-loadMore-noMoreLoading\">NO MORE WORKS</span></a></div>', '<div id=\"cbpw-wrap28\"><div id=\"cbpw-filters28\" class=\"cbp-l-filters-dropdown des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid28\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div><div id=\"cbpw-loadMore28\" class=\"\">{{loadMoreContent}}</div></div>', '<div class=\"cbp-l-filters-dropdownWrap\"><div class=\"cbp-l-filters-dropdownHeader\">Sort Gallery</div><div class=\"cbp-l-filters-dropdownList\"><div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All</div>\n<div data-filter=\".slider\" class=\"cbp-filter-item\">Slider</div>\n<div data-filter=\".video\" class=\"cbp-filter-item\">Video</div>\n<div data-filter=\".gallery\" class=\"cbp-filter-item\">Gallery</div>\n<div data-filter=\".image\" class=\"cbp-filter-item\">Image</div>\n</div></div>', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"}]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(29, 1, 'Grid Ajax 4 Columns', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap29 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid29 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:13px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:uppercase;}#cbpw-grid29 .cbp-l-caption-desc {color:#5c5c5c;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid29 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"#cbpw-filters29 .cbp-filter-item {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#3b3b3b;font-size:13px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters29 .cbp-filter-item:hover {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#cccccc;font-size:13px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters29 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#cccccc;font-size:13px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters29 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#cccccc;font-size:13px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters29 .cbp-filter-counter {background-color:#626161;color:#fff;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:18px;padding:4px 0px 4px 0px;}#cbpw-filters29 .cbp-filter-counter:after {border-color:#626161 transparent;}\",\"loadMorecss\":\"#cbpw-loadMore29 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore29 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore29 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore29 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore29 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore29 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage29 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage29 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters29\",\"loadMore\":\"\",\"loadMoreAction\":\"auto\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"flipOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":4},{\"width\":1170,\"cols\":4},{\"width\":1024,\"cols\":4},{\"width\":960,\"cols\":4},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":10,\"gapVertical\":10,\"caption\":\"overlayBottomPush\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"300:267\",\"displayItemsLoadMore\":3}', '', '<div id=\"cbpw-wrap29\"><div id=\"cbpw-filters29\" class=\"cbp-l-filters-alignCenter des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid29\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All</div>\n/<div data-filter=\".slider\" class=\"cbp-filter-item\">Slider</div>\n/<div data-filter=\".video\" class=\"cbp-filter-item\">Video</div>\n/<div data-filter=\".gallery\" class=\"cbp-filter-item\">Gallery</div>\n/<div data-filter=\".image\" class=\"cbp-filter-item\">Image</div>\n', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"}]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(30, 1, 'Wide Portfolio Small Thumbnail', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap30 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid30 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:18px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:left;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid30 .cbp-l-caption-desc {color:#5c5c5c;background-color:transparent;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:left;padding:0px 0px 0px 0px;margin:5px 0px 0px 0px;text-transform:none;}#cbpw-grid30 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"#cbpw-filters30 .cbp-filter-item {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#949494;font-size:11px;font-family:Open Sans,sans-serif;font-weight:600;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters30 .cbp-filter-item:hover {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#2D2C2C;font-size:11px;font-family:Open Sans,sans-serif;font-weight:600;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters30 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#2D2C2C;font-size:11px;font-family:Open Sans,sans-serif;font-weight:600;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters30 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#2D2C2C;font-size:11px;font-family:Open Sans,sans-serif;font-weight:600;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters30 .cbp-filter-counter {background-color:#626161;color:#fff;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:18px;padding:4px 0px 4px 0px;}#cbpw-filters30 .cbp-filter-counter:after {border-color:#626161 transparent;}\",\"loadMorecss\":\"#cbpw-loadMore30 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore30 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore30 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore30 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore30 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore30 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage30 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage30 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters30\",\"loadMore\":\"\",\"loadMoreAction\":\"auto\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"flipOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":4},{\"width\":1170,\"cols\":4},{\"width\":1024,\"cols\":4},{\"width\":960,\"cols\":4},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":0,\"gapVertical\":0,\"caption\":\"pushTop\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"250:180\",\"displayItemsLoadMore\":3}', '', '<div id=\"cbpw-wrap30\"><div id=\"cbpw-filters30\" class=\"cbp-l-filters-alignCenter des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid30\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All</div>\n/<div data-filter=\".slider\" class=\"cbp-filter-item\">Slider</div>\n/<div data-filter=\".video\" class=\"cbp-filter-item\">Video</div>\n/<div data-filter=\".gallery\" class=\"cbp-filter-item\">Gallery</div>\n/<div data-filter=\".image\" class=\"cbp-filter-item\">Image</div>\n', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal,600normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(31, 1, 'Wide Portfolio Medium Thumbnail', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap31 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid31 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:14px;font-family:Montserrat,sans-serif;font-weight:500;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid31 .cbp-l-caption-desc {color:#707070;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid31 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"#cbpw-filters31 .cbp-filter-item {background-color:#303030;border-color:#383838;color:#bababa;font-size:11px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 25px 0px 25px;text-transform:uppercase;}#cbpw-filters31 .cbp-filter-item:hover {background-color:#101010;border-color:#222222;color:#fff;font-size:11px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 25px 0px 25px;text-transform:uppercase;}#cbpw-filters31 .cbp-filter-item.cbp-filter-item-active {background-color:#101010;border-color:#222222;color:#FFFFFF;font-size:11px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 25px 0px 25px;text-transform:capitalize;}#cbpw-filters31 .cbp-filter-item.cbp-filter-item-active:hover {background-color:#101010;border-color:#222222;color:#FFFFFF;font-size:11px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 25px 0px 25px;text-transform:none;}\",\"loadMorecss\":\"#cbpw-loadMore31 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore31 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore31 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore31 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore31 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore31 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage31 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage31 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters31\",\"loadMore\":\"#cbpw-loadMore31\",\"loadMoreAction\":\"auto\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"quicksand\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":3},{\"width\":1170,\"cols\":3},{\"width\":1024,\"cols\":3},{\"width\":960,\"cols\":3},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":0,\"gapVertical\":0,\"caption\":\"overlayBottomPush\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"300:267\",\"displayItemsLoadMore\":3}', '<div class=\"cbp-l-loadMore-button\"><a href=\"ajax/loadMore.html\" class=\"cbp-l-loadMore-link\" rel=\"nofollow\"><span class=\"cbp-l-loadMore-defaultText\">LOAD MORE</span> <span class=\"cbp-l-loadMore-loadingText\">LOADING...</span><span class=\"cbp-l-loadMore-noMoreLoading\">NO MORE WORKS</span></a></div>', '<div id=\"cbpw-wrap31\"><div id=\"cbpw-filters31\" class=\"cbp-l-filters-list des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid31\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div><div id=\"cbpw-loadMore31\" class=\"\">{{loadMoreContent}}</div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-l-filters-list-first cbp-filter-item-active\">All</div>\n<div data-filter=\".slider\" class=\"cbp-filter-item\">Slider</div>\n<div data-filter=\".video\" class=\"cbp-filter-item\">Video</div>\n<div data-filter=\".gallery\" class=\"cbp-filter-item\">Gallery</div>\n<div data-filter=\".image\" class=\"cbp-filter-item  cbp-l-filters-list-last\">Image</div>\n', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"500normal,700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"}]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(32, 1, 'Wide Portfolio Big Thumbnail', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap32 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid32 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:18px;font-family:Montserrat,sans-serif;font-weight:500;font-style:normal;line-height:21px;text-align:left;padding:0px 0px 0px 0px;margin:20px 0px 0px 20px;text-transform:uppercase;}#cbpw-grid32 .cbp-l-caption-desc {color:#6e6e6e;background-color:transparent;font-size:11px;font-family:Open Sans;font-weight:600;font-style:normal;line-height:16px;text-align:left;padding:0px 0px 0px 0px;margin:5px 0px 0px 20px;text-transform:uppercase;}#cbpw-grid32 .cbp-caption-activeWrap {background-color:rgba(16,16,16,0.95);}\",\"filterscss\":\"#cbpw-filters32 .cbp-filter-item {background-color:#303030;border-color:#303030;color:#bababa;font-size:12px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 18px 0px 18px;text-transform:uppercase;}#cbpw-filters32 .cbp-filter-item:hover {background-color:#303030;border-color:#303030;color:#fff;font-size:12px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 18px 0px 18px;text-transform:uppercase;}#cbpw-filters32 .cbp-filter-item.cbp-filter-item-active {background-color:#303030;border-color:#303030;color:#FFFFFF;font-size:12px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 18px 0px 18px;text-transform:capitalize;}#cbpw-filters32 .cbp-filter-item.cbp-filter-item-active:hover {background-color:#303030;border-color:#303030;color:#FFFFFF;font-size:12px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:35px;margin:0px 0px 10px 0px;padding:0px 18px 0px 18px;text-transform:none;}\",\"loadMorecss\":\"#cbpw-loadMore32 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore32 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore32 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore32 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore32 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore32 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage32 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage32 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters32\",\"loadMore\":\"#cbpw-loadMore32\",\"loadMoreAction\":\"auto\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"flipOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":2},{\"width\":1170,\"cols\":2},{\"width\":1024,\"cols\":2},{\"width\":960,\"cols\":2},{\"width\":778,\"cols\":2},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":0,\"gapVertical\":0,\"caption\":\"zoom\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"460:345\",\"displayItemsLoadMore\":3}', '<div class=\"cbp-l-loadMore-button\"><a href=\"ajax/loadMore.html\" class=\"cbp-l-loadMore-link\" rel=\"nofollow\"><span class=\"cbp-l-loadMore-defaultText\">LOAD MORE</span> <span class=\"cbp-l-loadMore-loadingText\">LOADING...</span><span class=\"cbp-l-loadMore-noMoreLoading\">NO MORE WORKS</span></a></div>', '<div id=\"cbpw-wrap32\"><div id=\"cbpw-filters32\" class=\"cbp-l-filters-list des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid32\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div><div id=\"cbpw-loadMore32\" class=\"\">{{loadMoreContent}}</div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-l-filters-list-first cbp-filter-item-active\">All</div>\n<div data-filter=\".slider\" class=\"cbp-filter-item\">Slider</div>\n<div data-filter=\".video\" class=\"cbp-filter-item\">Video</div>\n<div data-filter=\".gallery\" class=\"cbp-filter-item\">Gallery</div>\n<div data-filter=\".image\" class=\"cbp-filter-item cbp-l-filters-list-last\">Image</div>\n', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"500normal,700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"600normal,400normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(35, 1, 'LatestProjects-Slider Swipe Navigation', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap35 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid35 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:15px;font-family:Montserrat,sans-serif;font-weight:400;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid35 .cbp-l-caption-desc {color:#5c5c5c;background-color:transparent;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:12px;text-align:center;padding:1px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid35 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"\",\"loadMorecss\":\"#cbpw-loadMore35 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore35 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore35 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore35 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore35 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore35 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage35 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage35 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"\",\"loadMore\":\"\",\"loadMoreAction\":\"auto\",\"search\":\"\",\"layoutMode\":\"slider\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":false,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"flipOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":4},{\"width\":1170,\"cols\":4},{\"width\":1024,\"cols\":3},{\"width\":960,\"cols\":3},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":0,\"gapVertical\":0,\"caption\":\"overlayBottomPush\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"400:267\",\"displayItemsLoadMore\":3}', '', '<div id=\"cbpw-wrap35\"><div id=\"cbpw-grid35\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"400normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePage\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePage\"}]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}');
INSERT INTO `wp_cubeportfolio` (`id`, `active`, `name`, `type`, `customcss`, `options`, `loadMorehtml`, `template`, `filtershtml`, `googlefonts`, `popup`, `jsondata`) VALUES
(36, 1, 'LatestProjects-Slider Swipe Navigation Gap', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap36 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid36 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:15px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:left;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid36 .cbp-l-caption-desc {color:#a9b2b8;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:left;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid36 .cbp-caption-activeWrap {background-color:rgba(0,0,0,0.7);}\",\"filterscss\":\"\",\"loadMorecss\":\"#cbpw-loadMore36 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore36 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore36 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore36 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore36 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore36 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage36 .cbp-popup-navigation-wrap {background-color:#101010;}#cbpw-singlePage36 .cbp-popup-singlePage-counter {color:#c2c2c2;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"\",\"loadMore\":\"\",\"loadMoreAction\":\"auto\",\"search\":\"\",\"layoutMode\":\"slider\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":false,\"showPagination\":false,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"flipOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":5},{\"width\":1170,\"cols\":4},{\"width\":1024,\"cols\":3},{\"width\":960,\"cols\":3},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":20,\"gapVertical\":20,\"caption\":\"overlayBottomAlong\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"300:267\",\"displayItemsLoadMore\":3}', '', '<div id=\"cbpw-wrap36\"><div id=\"cbpw-grid36\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePage\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePage\"}]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(37, 1, 'LatestProjects-Slider', 'juicy-projects', '{\"wrapcss\":\"#cbpw-wrap37 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid37 .cbp-l-grid-projects-title {color:#474747;background-color:transparent;font-size:15px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:left;padding:0px 0px 0px 0px;margin:20px 0px 0px 10px;text-transform:none;}#cbpw-grid37 .cbp-l-grid-projects-desc {color:#bbbfbf;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:18px;text-align:left;padding:0px 0px 0px 0px;margin:0px 0px 0px 10px;text-transform:none;}#cbpw-grid37 .cbp-l-caption-buttonLeft {color:#FFFFFF;background-color:transparent;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;text-align:center;text-transform:none;padding:0px 10px 0px 10px;margin:10px 10px 4px 10px;}#cbpw-grid37 .cbp-l-caption-buttonRight {color:#FFFFFF;background-color:transparent;font-size:13px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;text-align:center;text-transform:none;padding:0px 10px 0px 10px;margin:10px 10px 4px 10px;}#cbpw-grid37 .cbp-caption {margin-bottom:0;}#cbpw-grid37 .cbp-caption-activeWrap {background-color:rgba(0,0,0,0.8);}\",\"filterscss\":\"\",\"loadMorecss\":\"#cbpw-loadMore37 .cbp-l-loadMore-link {color:#7E7B7B;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore37 .cbp-l-loadMore-link:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore37 .cbp-l-loadMore-loading {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore37 .cbp-l-loadMore-loading:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore37 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore37 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage37 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage37 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"\",\"loadMore\":\"\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"slider\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":false,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"quicksand\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":5},{\"width\":1170,\"cols\":4},{\"width\":1024,\"cols\":3},{\"width\":960,\"cols\":3},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":40,\"gapVertical\":40,\"caption\":\"zoom\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"top\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"360:300\"}', '', '<div id=\"cbpw-wrap37\"><div id=\"cbpw-grid37\" class=\"cbp-l-grid-projects cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(38, 1, 'Latest Projects Without Scroller', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap38 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid38 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:15px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:left;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid38 .cbp-l-caption-desc {color:#5c5c5c;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:left;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid38 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"\",\"loadMorecss\":\"#cbpw-loadMore38 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore38 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore38 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore38 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore38 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore38 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage38 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage38 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"\",\"loadMore\":\"\",\"loadMoreAction\":\"auto\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":false,\"showPagination\":false,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"flipOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":5},{\"width\":1170,\"cols\":4},{\"width\":1024,\"cols\":3},{\"width\":960,\"cols\":3},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":20,\"gapVertical\":20,\"caption\":\"overlayBottomAlong\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"300:267\",\"displayItemsLoadMore\":3}', '', '<div id=\"cbpw-wrap38\"><div id=\"cbpw-grid38\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(39, 1, 'Home Grid Ajax Portfolio', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap39 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid39 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:16px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:18px;text-align:left;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px;text-transform:none;}#cbpw-grid39 .cbp-l-caption-desc {color:#5c5c5c;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:left;padding:0px 0px 0px 0px;margin:10px 0px 0px 0px;text-transform:none;}#cbpw-grid39 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"#cbpw-filters39 .cbp-filter-item {background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#333;border-radius:0;color:#333;font-size:12px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:29px;margin:0px 0px 10px 5px;padding:0 12px 0 12px;text-transform:uppercase;}#cbpw-filters39 .cbp-filter-item:hover {background-color:#101010;border-width:1px 1px 1px 1px;border-style:solid;border-color:#101010;border-radius:0;color:#fff;font-size:12px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:29px;margin:0px 0px 10px 5px;padding:0 12px 0 12px;text-transform:uppercase;}#cbpw-filters39 .cbp-filter-item.cbp-filter-item-active {background-color:#ccc;border-width:1px 1px 1px 1px;border-style:solid;border-color:#ccc;border-radius:0;color:#fff;font-size:12px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:29px;margin:0px 0px 10px 5px;padding:0 12px 0 12px;text-transform:uppercase;}#cbpw-filters39 .cbp-filter-item.cbp-filter-item-active:hover {background-color:#101010;border-width:1px 1px 1px 1px;border-style:solid;border-color:#101010;border-radius:0;color:#ffffff;font-size:12px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:29px;margin:0px 0px 10px 5px;padding:0 12px 0 12px;text-transform:uppercase;}#cbpw-filters39 .cbp-filter-counter {background-color:#049372;color:#fff;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:18px;padding:4px 0px 4px 0px;}#cbpw-filters39 .cbp-filter-counter:after {border-color:#049372 transparent;}\",\"loadMorecss\":\"#cbpw-loadMore39 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore39 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore39 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore39 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore39 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore39 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage39 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage39 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters39\",\"loadMore\":\"#cbpw-loadMore39\",\"loadMoreAction\":\"auto\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"flipOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":3},{\"width\":1170,\"cols\":3},{\"width\":1024,\"cols\":3},{\"width\":960,\"cols\":3},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":10,\"gapVertical\":10,\"caption\":\"overlayRightAlong\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"300:267\",\"displayItemsLoadMore\":3}', '<div class=\"cbp-l-loadMore-button\"><a href=\"ajax/loadMore.html\" class=\"cbp-l-loadMore-link\" rel=\"nofollow\"><span class=\"cbp-l-loadMore-defaultText\">LOAD MORE</span> <span class=\"cbp-l-loadMore-loadingText\">LOADING...</span><span class=\"cbp-l-loadMore-noMoreLoading\">NO MORE WORKS</span></a></div>', '<div id=\"cbpw-wrap39\"><div id=\"cbpw-filters39\" class=\"cbp-l-filters-alignRight des-align-left\">{{filtersContent}}</div><div id=\"cbpw-grid39\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div><div id=\"cbpw-loadMore39\" class=\"\">{{loadMoreContent}}</div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All</div>\n<div data-filter=\".slider\" class=\"cbp-filter-item\">Slider</div>\n<div data-filter=\".video\" class=\"cbp-filter-item\">Video</div>\n<div data-filter=\".gallery\" class=\"cbp-filter-item\">Gallery</div>\n<div data-filter=\".image\" class=\"cbp-filter-item\">Image</div>\n', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"},{\"link\":\"\",\"html\":\"\",\"type\":\"cbp-singlePageInline\"}]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(41, 1, 'Home Wide Portfolio Small Thumbnail', 'lightbox-gallery', '{\"wrapcss\":\"#cbpw-wrap41 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid41 .cbp-l-caption-title {color:#FFFFFF;background-color:transparent;font-size:18px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:25% 0px 0px 0px;text-transform:none;}#cbpw-grid41 .cbp-l-caption-desc {color:#5c5c5c;background-color:transparent;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:16px;text-align:center;padding:0px 0px 0px 0px;margin:5px 0px 0px 0px;text-transform:none;}#cbpw-grid41 .cbp-caption-activeWrap {background-color:#101010;}\",\"filterscss\":\"#cbpw-filters30 .cbp-filter-item {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#949494;font-size:11px;font-family:Open Sans,sans-serif;font-weight:600;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters30 .cbp-filter-item:hover {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#2D2C2C;font-size:11px;font-family:Open Sans,sans-serif;font-weight:600;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters30 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#2D2C2C;font-size:11px;font-family:Open Sans,sans-serif;font-weight:600;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters30 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:0px;border-style:none;border-color:transparent;border-radius:0;color:#2D2C2C;font-size:11px;font-family:Open Sans,sans-serif;font-weight:600;font-style:normal;line-height:21px;margin:0px 0px 10px 0px;padding:0px 12px 0px 12px;text-transform:uppercase;}#cbpw-filters30 .cbp-filter-counter {background-color:#626161;color:#fff;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:18px;padding:4px 0px 4px 0px;}#cbpw-filters30 .cbp-filter-counter:after {border-color:#626161 transparent;}\",\"loadMorecss\":\"#cbpw-loadMore41 .cbp-l-loadMore-link {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore41 .cbp-l-loadMore-link:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore41 .cbp-l-loadMore-loading {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore41 .cbp-l-loadMore-loading:hover {color:#212121;background-color:transparent;border-width:2px 2px 2px 2px;border-style:solid;border-color:#303030;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore41 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore41 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage41 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage41 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"\",\"loadMore\":\"\",\"loadMoreAction\":\"auto\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"flipOut\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":4},{\"width\":1170,\"cols\":4},{\"width\":1024,\"cols\":4},{\"width\":960,\"cols\":4},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":0,\"gapVertical\":0,\"caption\":\"zoom\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"below\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"250:180\",\"displayItemsLoadMore\":3}', '', '<div id=\"cbpw-wrap41\"><div id=\"cbpw-grid41\" class=\"cbp-l-grid-gallery cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal,600normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(42, 1, 'Mixed Projects 3 Columns', 'juicy-projects', '{\"wrapcss\":\"#cbpw-wrap42 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid42 .cbp-l-grid-projects-title {color:#474747;background-color:transparent;font-size:14px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:20px 0px 0px 10px;text-transform:capitalize;}#cbpw-grid42 .cbp-l-grid-projects-desc {color:#bbbfbf;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:18px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 10px;text-transform:none;}#cbpw-grid42 .cbp-l-caption-buttonLeft {color:#FFFFFF;background-color:transparent;font-size:11px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;text-align:center;text-transform:none;padding:0px 10px 0px 10px;margin:10px 10px 4px 10px;}#cbpw-grid42 .cbp-l-caption-buttonRight {color:#FFFFFF;background-color:transparent;font-size:11px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;text-align:center;text-transform:none;padding:0px 10px 0px 10px;margin:10px 10px 4px 10px;}#cbpw-grid42 .cbp-caption {margin-bottom:0;}#cbpw-grid42 .cbp-caption-activeWrap {background-color:rgba(16,16,16,0.95);}\",\"filterscss\":\"#cbpw-filters42 .cbp-filter-item {background-color:#FFFFFF;border-width:1px 1px 1px 1px;border-style:solid;border-color:#ECECEC;color:#888888;font-size:10px;font-family:Open Sans,sans-serif;font-weight:700;font-style:normal;line-height:32px;margin:0px 10px 10px 0px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters42 .cbp-filter-item:hover {background-color:#101010;border-width:1px 1px 1px 1px;border-style:solid;border-color:#101010;color:#fff;font-size:10px;font-family:Open Sans,sans-serif;font-weight:700;font-style:normal;line-height:32px;margin:0px 10px 10px 0px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters42 .cbp-filter-item.cbp-filter-item-active {background-color:#101010;border-width:1px 1px 1px 1px;border-style:solid;border-color:#5d5d5d;color:#fff;font-size:10px;font-family:Open Sans,sans-serif;font-weight:700;font-style:normal;line-height:32px;margin:0px 10px 10px 0px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters42 .cbp-filter-item.cbp-filter-item-active:hover {background-color:#101010;border-width:1px 1px 1px 1px;border-style:solid;border-color:#5d5d5d;color:#fff;font-size:10px;font-family:Open Sans,sans-serif;font-weight:700;font-style:normal;line-height:32px;margin:0px 10px 10px 0px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters42 .cbp-filter-counter {background-color:#101010;color:#fff;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:18px;padding:4px 0px 4px 0px;}#cbpw-filters42 .cbp-filter-counter:after {border-color:#101010 transparent;}\",\"loadMorecss\":\"#cbpw-loadMore42 .cbp-l-loadMore-link {color:#7E7B7B;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore42 .cbp-l-loadMore-link:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore42 .cbp-l-loadMore-loading {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore42 .cbp-l-loadMore-loading:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore42 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore42 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage42 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage42 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters42\",\"loadMore\":\"\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"quicksand\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":3},{\"width\":1170,\"cols\":3},{\"width\":1024,\"cols\":3},{\"width\":960,\"cols\":3},{\"width\":778,\"cols\":3},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":40,\"gapVertical\":40,\"caption\":\"zoom\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"top\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"360:300\"}', '', '<div id=\"cbpw-wrap42\"><div id=\"cbpw-filters42\" class=\"cbp-l-filters-button des-align-left\">{{filtersContent}}</div><div id=\"cbpw-grid42\" class=\"cbp-l-grid-projects cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '<div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All<div class=\"cbp-filter-counter-wrap\"><div class=\"cbp-filter-counter\"></div></div></div>\n<div data-filter=\".mockup\" class=\"cbp-filter-item\">Web Design<div class=\"cbp-filter-counter-wrap\"><div class=\"cbp-filter-counter\"></div></div></div>\n<div data-filter=\".motion\" class=\"cbp-filter-item\">Motion<div class=\"cbp-filter-counter-wrap\"><div class=\"cbp-filter-counter\"></div></div></div>\n<div data-filter=\".logos\" class=\"cbp-filter-item\">Logos<div class=\"cbp-filter-counter-wrap\"><div class=\"cbp-filter-counter\"></div></div></div>\n<div data-filter=\".branding\" class=\"cbp-filter-item\">Branding<div class=\"cbp-filter-counter-wrap\"><div class=\"cbp-filter-counter\"></div></div></div>\n', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal,700normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}'),
(43, 1, 'Mixed Projects 2 Columns', 'juicy-projects', '{\"wrapcss\":\"#cbpw-wrap43 {margin:0px 0px 0px 0px;}\",\"gridcss\":\"#cbpw-grid43 .cbp-l-grid-projects-title {color:#474747;background-color:transparent;font-size:14px;font-family:Montserrat,sans-serif;font-weight:700;font-style:normal;line-height:21px;text-align:center;padding:0px 0px 0px 0px;margin:20px 0px 0px 10px;text-transform:capitalize;}#cbpw-grid43 .cbp-l-grid-projects-desc {color:#bbbfbf;background-color:transparent;font-size:12px;font-family:Open Sans;font-weight:400;font-style:normal;line-height:18px;text-align:center;padding:0px 0px 0px 0px;margin:0px 0px 0px 10px;text-transform:none;}#cbpw-grid43 .cbp-l-caption-buttonLeft {color:#FFFFFF;background-color:transparent;font-size:11px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;text-align:center;text-transform:none;padding:0px 10px 0px 10px;margin:10px 10px 4px 10px;}#cbpw-grid43 .cbp-l-caption-buttonRight {color:#FFFFFF;background-color:transparent;font-size:11px;font-family:Montserrat,sans-serif;font-weight:600;font-style:normal;line-height:30px;text-align:center;text-transform:none;padding:0px 10px 0px 10px;margin:10px 10px 4px 10px;}#cbpw-grid43 .cbp-caption {margin-bottom:0;}#cbpw-grid43 .cbp-caption-activeWrap {background-color:rgba(16,16,16,0.95);}\",\"filterscss\":\"#cbpw-filters43 .cbp-l-filters-dropdownWrap {background-color:#101010;}#cbpw-filters43 .cbp-l-filters-dropdownHeader {background-color:transparent;color:#FFFFFF;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:38px;margin:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters43 .cbp-filter-item {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#212121;color:#b3b3b3;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters43 .cbp-filter-item:hover {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#212121;color:#e6e6e6;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters43 .cbp-filter-item.cbp-filter-item-active {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#212121;color:#FFFFFF;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}#cbpw-filters43 .cbp-filter-item.cbp-filter-item-active:hover {background-color:transparent;border-width:1px 0px 0px 0px;border-style:solid;border-color:#212121;color:#FFFFFF;font-size:11px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:40px;padding:0px 17px 0px 17px;text-transform:uppercase;}\",\"loadMorecss\":\"#cbpw-loadMore43 .cbp-l-loadMore-link {color:#7E7B7B;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore43 .cbp-l-loadMore-link:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore43 .cbp-l-loadMore-loading {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore43 .cbp-l-loadMore-loading:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore43 .cbp-l-loadMore-stop {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}#cbpw-loadMore43 .cbp-l-loadMore-stop:hover {color:#B0B0B0;background-color:transparent;border-width:1px 1px 1px 1px;border-style:solid;border-color:#DEDEDE;font-size:12px;font-family:Open Sans,sans-serif;font-weight:400;font-style:normal;line-height:34px;text-align:center;padding:0px 30px 0px 30px;margin:40px 0px 0px 0px;text-transform:none;}\",\"singlePagecss\":\"#cbpw-singlePage43 .cbp-popup-navigation-wrap {background-color:#34425C;}#cbpw-singlePage43 .cbp-popup-singlePage-counter {color:#bbc0df;font-size:13px;font-family:Open Sans;font-weight:400;font-style:normal;}\"}', '{\"filters\":\"#cbpw-filters43\",\"loadMore\":\"\",\"loadMoreAction\":\"click\",\"search\":\"\",\"layoutMode\":\"grid\",\"sortToPreventGaps\":false,\"drag\":true,\"auto\":false,\"autoTimeout\":5000,\"autoPauseOnHover\":true,\"showNavigation\":true,\"showPagination\":true,\"rewindNav\":true,\"scrollByPage\":false,\"defaultFilter\":\"*\",\"filterDeeplinking\":false,\"animationType\":\"quicksand\",\"gridAdjustment\":\"responsive\",\"mediaQueries\":[{\"width\":1400,\"cols\":2},{\"width\":1170,\"cols\":2},{\"width\":1024,\"cols\":2},{\"width\":960,\"cols\":2},{\"width\":778,\"cols\":2},{\"width\":640,\"cols\":2},{\"width\":480,\"cols\":1}],\"gapHorizontal\":40,\"gapVertical\":40,\"caption\":\"zoom\",\"displayType\":\"bottomToTop\",\"displayTypeSpeed\":100,\"lightboxDelegate\":\".cbp-lightbox\",\"lightboxGallery\":true,\"lightboxTitleSrc\":\"data-title\",\"lightboxCounter\":\"<div class=\\\"cbp-popup-lightbox-counter\\\">{{current}} of {{total}}</div>\",\"singlePageDelegate\":\".cbp-singlePage\",\"singlePageDeeplinking\":true,\"singlePageStickyNavigation\":true,\"singlePageCounter\":\"<div class=\\\"cbp-popup-singlePage-counter\\\">{{current}} of {{total}}</div>\",\"singlePageAnimation\":\"middle\",\"singlePageInlineDelegate\":\".cbp-singlePageInline\",\"singlePageInlineDeeplinking\":false,\"singlePageInlinePosition\":\"top\",\"singlePageInlineInFocus\":true,\"plugins\":{},\"cols\":3,\"coverRatio\":\"420:360\"}', '', '<div id=\"cbpw-wrap43\"><div id=\"cbpw-filters43\" class=\"cbp-l-filters-dropdown des-align-center\">{{filtersContent}}</div><div id=\"cbpw-grid43\" class=\"cbp-l-grid-projects cbp{{customCls}}\"><div>{{gridContent}}</div></div></div>', '<div class=\"cbp-l-filters-dropdownWrap\"><div class=\"cbp-l-filters-dropdownHeader\">Sort Gallery</div><div class=\"cbp-l-filters-dropdownList\"><div data-filter=\"*\" class=\"cbp-filter-item cbp-filter-item-active\">All <div class=\"cbp-filter-counter-wrap\">(<div class=\"cbp-filter-counter\"></div> items)</div></div>\n<div data-filter=\".mockup\" class=\"cbp-filter-item\">Web Design <div class=\"cbp-filter-counter-wrap\">(<div class=\"cbp-filter-counter\"></div> items)</div></div>\n<div data-filter=\".motion\" class=\"cbp-filter-item\">Motion <div class=\"cbp-filter-counter-wrap\">(<div class=\"cbp-filter-counter\"></div> items)</div></div>\n<div data-filter=\".logos\" class=\"cbp-filter-item\">Logos <div class=\"cbp-filter-counter-wrap\">(<div class=\"cbp-filter-counter\"></div> items)</div></div>\n<div data-filter=\".branding\" class=\"cbp-filter-item\">Branding <div class=\"cbp-filter-counter-wrap\">(<div class=\"cbp-filter-counter\"></div> items)</div></div>\n</div></div>', '[{\"name\":\"Montserrat\",\"slug\":\"Montserrat\",\"weightStyle\":\"700normal,600normal\"},{\"name\":\"Open Sans\",\"slug\":\"Open+Sans\",\"weightStyle\":\"400normal\"}]', '[]', '{\"customCls\":\"\",\"forceFullWidth\":false,\"lazyLoad\":false}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_cubeportfolio_items`
--

CREATE TABLE `wp_cubeportfolio_items` (
  `id` int(10) UNSIGNED NOT NULL,
  `cubeportfolio_id` int(10) UNSIGNED NOT NULL,
  `sort` tinyint(1) UNSIGNED NOT NULL DEFAULT '1',
  `page` tinyint(2) UNSIGNED NOT NULL,
  `items` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `isLoadMore` text COLLATE utf8mb4_unicode_520_ci,
  `isSinglePage` text COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wp_cubeportfolio_items`
--

INSERT INTO `wp_cubeportfolio_items` (`id`, `cubeportfolio_id`, `sort`, `page`, `items`, `isLoadMore`, `isSinglePage`) VALUES
(25, 1, 6, 1, '<div class=\"cbp-item web-design cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean clock</div></div></div></div></a></div>', '0', ''),
(26, 1, 4, 1, '<div class=\"cbp-item des-project graphic cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"Coffee Time\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Radio Desk</div></div></div></div></a></div>', '0', ''),
(27, 1, 7, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Personal materials</div></div></div></div></a></div>', '0', ''),
(28, 1, 2, 1, '<div class=\"cbp-item des-project logos cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black apple iwatch</div></div></div></div></a></div>', '0', ''),
(29, 1, 5, 1, '<div class=\"cbp-item des-project branding cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div></div></div></div></a></div>', '0', ''),
(30, 1, 1, 1, '<div class=\"cbp-item des-project branding cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div></div></div></div></a></div>', '0', ''),
(31, 1, 8, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"Office Materials\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div></div></div></div></a></div>', '0', ''),
(32, 1, 3, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"Blake Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple ipad display</div></div></div></div></a></div>', '0', ''),
(33, 1, 9, 1, '<div class=\"cbp-item des-project graphic cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Especial Coffee Cup</div></div></div></div></a></div>', '0', ''),
(289, 5, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Personal Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">clean device display</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(290, 5, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Print Paper\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(291, 5, 3, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Coffee Time\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">black iwatch</div><div class=\"cbp-l-caption-desc\">Photoshop / Illustrator</div></div></div></div></a></div>', '0', ''),
(292, 5, 6, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Blake Book\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iphone</div><div class=\"cbp-l-caption-desc\">by GraphicBurger</div></div></div></div></a></div>', '0', ''),
(293, 5, 7, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Larch sketchbook</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(294, 5, 5, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Web Site\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div><div class=\"cbp-l-caption-desc\">Wordpress / Photoshop</div></div></div></div></a></div>', '0', ''),
(295, 5, 4, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Ipad\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(296, 5, 8, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Office Materials\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple iMac</div><div class=\"cbp-l-caption-desc\">Mockup / Photoshop</div></div></div></div></a></div>', '0', ''),
(297, 5, 9, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Black Sketchbook\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">radio Desk</div><div class=\"cbp-l-caption-desc\">DATE: 20/08/2016</div></div></div></div></a></div>', '0', ''),
(304, 5, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Sketchbook A4\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">especial coffee cup</div><div class=\"cbp-l-caption-desc\">Pagination / InDesign</div></div></div></div></a></div>', '1', ''),
(305, 5, 3, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Apple Headphones\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">personal materials</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '1', ''),
(306, 5, 2, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">apple device</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '1', ''),
(476, 13, 1, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Clean device display</div><div class=\"cbp-l-grid-projects-desc\">Illustrator / Photoshop</div></div>', '0', ''),
(477, 13, 2, 1, '<div class=\"cbp-item des-project motion cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://www.vimeo.com/126580704\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Paper Bag\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Clean watch</div><div class=\"cbp-l-grid-projects-desc\">Client Envato</div></div>', '0', ''),
(478, 13, 3, 1, '<div class=\"cbp-item des-project graphic cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Glass Bottle\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Apple iwatch</div><div class=\"cbp-l-grid-projects-desc\">Photoshop / Illustrator</div></div>', '0', ''),
(479, 13, 4, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Office materials</div><div class=\"cbp-l-grid-projects-desc\">Web Design</div></div>', '0', ''),
(480, 13, 6, 1, '<div class=\"cbp-item des-project logos cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Lightning upgrade</div><div class=\"cbp-l-grid-projects-desc\">Wordpress / Photoshop</div></div>', '0', ''),
(481, 13, 10, 1, '<div class=\"cbp-item des-project branding cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Paper Packaging\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Black iPhone</div><div class=\"cbp-l-grid-projects-desc\">by GraphicBurger</div></div>', '0', ''),
(484, 13, 8, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Floating Desk\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Radio Desk</div><div class=\"cbp-l-grid-projects-desc\">Personal project</div></div>', '0', ''),
(486, 13, 9, 1, '<div class=\"cbp-item des-project graphic cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Apple Headphones\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Apple device</div><div class=\"cbp-l-grid-projects-desc\">Graphic</div></div>', '0', ''),
(487, 13, 11, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Sketchbook A4\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Personal materials</div><div class=\"cbp-l-grid-projects-desc\">Web Design / APP Development</div></div>', '0', ''),
(547, 20, 1, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"#\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Jonh Doe</div><div class=\"cbp-l-caption-desc\">President</div></div></div></div></a></div>', '0', ''),
(548, 20, 2, 1, '<div class=\"cbp-item des-project motion cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"#\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Print Paper\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Manuela Rivera</div><div class=\"cbp-l-caption-desc\">Public Relations</div></div></div></div></a></div>', '0', ''),
(549, 20, 3, 1, '<div class=\"cbp-item des-project graphic cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"#\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Coffee Time\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lucas Fotx</div><div class=\"cbp-l-caption-desc\">Designer</div></div></div></div></a></div>', '0', ''),
(550, 20, 4, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"#\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Joana Maria</div><div class=\"cbp-l-caption-desc\">Designer</div></div></div></div></a></div>', '0', ''),
(551, 20, 5, 1, '<div class=\"cbp-item des-project branding cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/blake-web-site-2/\" class=\"cbp-caption cbp-singlePage\" data-title=\"Blake Web Site\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Joe Ortiz</div><div class=\"cbp-l-caption-desc\">Developer</div></div></div></div></a></div>', '0', ''),
(552, 20, 6, 1, '<div class=\"cbp-item des-project branding cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/white-apple-ipad-2/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Case Xinoi</div><div class=\"cbp-l-caption-desc\">Video Animator</div></div></div></div></a></div>', '0', ''),
(576, 23, 6, 1, '<div class=\"cbp-item web-design cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean watch</div></div></div></div></a></div>', '0', ''),
(577, 23, 4, 1, '<div class=\"cbp-item des-project graphic cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Coffee Time\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Radio Desk</div></div></div></div></a></div>', '0', ''),
(578, 23, 7, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Personal materials</div></div></div></div></a></div>', '0', ''),
(579, 23, 2, 1, '<div class=\"cbp-item des-project logos cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black apple iwatch</div></div></div></div></a></div>', '0', ''),
(580, 23, 5, 1, '<div class=\"cbp-item des-project branding cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div></div></div></div></a></div>', '0', ''),
(581, 23, 1, 1, '<div class=\"cbp-item des-project branding cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div></div></div></div></a></div>', '0', ''),
(582, 23, 8, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Office Materials\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div></div></div></div></a></div>', '0', ''),
(583, 23, 3, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple ipad display</div></div></div></div></a></div>', '0', ''),
(584, 23, 9, 1, '<div class=\"cbp-item des-project graphic cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Especial Coffee Cup</div></div></div></div></a></div>', '0', ''),
(585, 24, 6, 1, '<div class=\"cbp-item web-design cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean watch</div></div></div></div></a></div>', '0', ''),
(586, 24, 4, 1, '<div class=\"cbp-item des-project graphic cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Coffee Time\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">radio Desk</div></div></div></div></a></div>', '0', ''),
(587, 24, 7, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Personal materials</div></div></div></div></a></div>', '0', ''),
(588, 24, 2, 1, '<div class=\"cbp-item des-project logos cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black apple iwatch</div></div></div></div></a></div>', '0', ''),
(589, 24, 5, 1, '<div class=\"cbp-item des-project branding cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div></div></div></div></a></div>', '0', ''),
(590, 24, 1, 1, '<div class=\"cbp-item des-project branding cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div></div></div></div></a></div>', '0', ''),
(591, 24, 8, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Office Materials\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div></div></div></div></a></div>', '0', ''),
(592, 24, 3, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple ipad display</div></div></div></div></a></div>', '0', ''),
(593, 24, 9, 1, '<div class=\"cbp-item des-project graphic cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">especial Coffee Cup</div></div></div></div></a></div>', '0', ''),
(603, 26, 6, 1, '<div class=\"cbp-item web-design cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">clean watch</div></div></div></div></a></div>', '0', ''),
(604, 26, 4, 1, '<div class=\"cbp-item des-project graphic cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Coffee Time\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">radio Desk</div></div></div></div></a></div>', '0', ''),
(605, 26, 7, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">personal materials</div></div></div></div></a></div>', '0', ''),
(606, 26, 2, 1, '<div class=\"cbp-item des-project logos cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">black apple iwatch</div></div></div></div></a></div>', '0', ''),
(607, 26, 5, 1, '<div class=\"cbp-item des-project branding cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div></div></div></div></a></div>', '0', ''),
(608, 26, 1, 1, '<div class=\"cbp-item des-project branding cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">clean device display</div></div></div></div></a></div>', '0', ''),
(609, 26, 8, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Office Materials\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">office materials</div></div></div></div></a></div>', '0', ''),
(610, 26, 3, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">apple ipad display</div></div></div></div></a></div>', '0', ''),
(611, 26, 9, 1, '<div class=\"cbp-item des-project graphic cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">especial Coffee Cup</div></div></div></div></a></div>', '0', ''),
(612, 27, 6, 1, '<div class=\"cbp-item web-design cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">clean watch</div></div></div></div></a></div>', '0', ''),
(613, 27, 4, 1, '<div class=\"cbp-item des-project graphic cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Coffee Time\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">radio Desk</div></div></div></div></a></div>', '0', ''),
(614, 27, 7, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">personal materials</div></div></div></div></a></div>', '0', ''),
(615, 27, 2, 1, '<div class=\"cbp-item des-project logos cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">black apple iwatch</div></div></div></div></a></div>', '0', ''),
(616, 27, 5, 1, '<div class=\"cbp-item des-project branding cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div></div></div></div></a></div>', '0', ''),
(617, 27, 1, 1, '<div class=\"cbp-item des-project branding cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">clean device display</div></div></div></div></a></div>', '0', ''),
(618, 27, 8, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Office Materials\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">office materials</div></div></div></div></a></div>', '0', ''),
(619, 27, 3, 1, '<div class=\"cbp-item des-project mockup cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">apple ipad display</div></div></div></div></a></div>', '0', ''),
(620, 27, 9, 1, '<div class=\"cbp-item des-project graphic cbp-l-grid-masonry-height2 cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">especial Coffee Cup</div></div></div></div></a></div>', '0', ''),
(621, 28, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Personal Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">clean device display</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(622, 28, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Print Paper\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(623, 28, 3, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Coffee Time\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">apple iwatch</div><div class=\"cbp-l-caption-desc\">Photoshop / Illustrator</div></div></div></div></a></div>', '0', ''),
(624, 28, 6, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Blake Book\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">black iphone</div><div class=\"cbp-l-caption-desc\">by GraphicBurger</div></div></div></div></a></div>', '0', ''),
(625, 28, 7, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Larch sketchbook</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(626, 28, 5, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Web Site\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div><div class=\"cbp-l-caption-desc\">Wordpress / Photoshop</div></div></div></div></a></div>', '0', ''),
(627, 28, 4, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Ipad\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(628, 28, 8, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Office Materials\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">apple iMac</div><div class=\"cbp-l-caption-desc\">Mockup / Photoshop</div></div></div></div></a></div>', '0', ''),
(629, 28, 9, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Black Sketchbook\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">radio Desk</div><div class=\"cbp-l-caption-desc\">DATE: 20/08/2016</div></div></div></div></a></div>', '0', ''),
(630, 28, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Sketchbook A4\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">especial coffee cup</div><div class=\"cbp-l-caption-desc\">Pagination / InDesign</div></div></div></div></a></div>', '1', ''),
(631, 28, 2, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Apple Headphones\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">apple device</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '1', ''),
(632, 28, 3, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">personal materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '1', ''),
(633, 29, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Personal Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">clean device display</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(634, 29, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Print Paper\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(635, 29, 3, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Coffee Time\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">apple iwatch</div><div class=\"cbp-l-caption-desc\">Photoshop / Illustrator</div></div></div></div></a></div>', '0', ''),
(636, 29, 6, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Blake Book\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">black iphone</div><div class=\"cbp-l-caption-desc\">by GraphicBurger</div></div></div></div></a></div>', '0', ''),
(637, 29, 7, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Larch sketchbook</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(638, 29, 5, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Web Site\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div><div class=\"cbp-l-caption-desc\">Wordpress / Photoshop</div></div></div></div></a></div>', '0', ''),
(639, 29, 4, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Ipad\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(640, 29, 8, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Office Materials\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">apple imac</div><div class=\"cbp-l-caption-desc\">Mockup / Photoshop</div></div></div></div></a></div>', '0', ''),
(641, 29, 9, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Black Sketchbook\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">radio Desk</div><div class=\"cbp-l-caption-desc\">DATE: 20/08/2016</div></div></div></div></a></div>', '0', '');
INSERT INTO `wp_cubeportfolio_items` (`id`, `cubeportfolio_id`, `sort`, `page`, `items`, `isLoadMore`, `isSinglePage`) VALUES
(642, 29, 10, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Sketchbook A4\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">especial coffee cup</div><div class=\"cbp-l-caption-desc\">Pagination / InDesign</div></div></div></div></a></div>', '0', ''),
(643, 29, 11, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Apple Headphones\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">apple device</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '0', ''),
(644, 29, 12, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">personal materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(645, 30, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(646, 30, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Print Paper\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(647, 30, 3, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Coffee Time\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iwatch</div><div class=\"cbp-l-caption-desc\">Photoshop / Illustrator</div></div></div></div></a></div>', '0', ''),
(648, 30, 6, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iPhone</div><div class=\"cbp-l-caption-desc\">by GraphicBurger</div></div></div></div></a></div>', '0', ''),
(649, 30, 7, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Larch sketchbook</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(650, 30, 5, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/lightning-upgrade/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div><div class=\"cbp-l-caption-desc\">Wordpress / Photoshop</div></div></div></div></a></div>', '0', ''),
(651, 30, 4, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/office-materials/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(652, 30, 8, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Office Materials\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple iMac</div><div class=\"cbp-l-caption-desc\">Mockup / Photoshop</div></div></div></div></a></div>', '0', ''),
(653, 30, 9, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Black Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Radio Desk</div><div class=\"cbp-l-caption-desc\">DATE: 20/08/2016</div></div></div></div></a></div>', '0', ''),
(654, 30, 10, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Sketchbook A4\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Especial coffee cup</div><div class=\"cbp-l-caption-desc\">Pagination / InDesign</div></div></div></div></a></div>', '0', ''),
(655, 30, 11, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Apple Headphones\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple device</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '0', ''),
(656, 30, 12, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Personal materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(657, 31, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(658, 31, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Print Paper\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(659, 31, 3, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Coffee Time\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iwatch</div><div class=\"cbp-l-caption-desc\">Photoshop / Illustrator</div></div></div></div></a></div>', '0', ''),
(660, 31, 6, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iPhone</div><div class=\"cbp-l-caption-desc\">by GraphicBurger</div></div></div></div></a></div>', '0', ''),
(661, 31, 7, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Larch sketchbook</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(662, 31, 5, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div><div class=\"cbp-l-caption-desc\">Wordpress / Photoshop</div></div></div></div></a></div>', '0', ''),
(663, 31, 4, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(664, 31, 8, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Office Materials\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple iMac</div><div class=\"cbp-l-caption-desc\">Mockup / Photoshop</div></div></div></div></a></div>', '0', ''),
(665, 31, 9, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Black Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Radio Desk</div><div class=\"cbp-l-caption-desc\">Fullscreen Video</div></div></div></div></a></div>', '0', ''),
(666, 31, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Sketchbook A4\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Especial coffee cup</div><div class=\"cbp-l-caption-desc\">Pagination / InDesign</div></div></div></div></a></div>', '1', ''),
(667, 31, 2, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Apple Headphones\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple device</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '1', ''),
(668, 31, 3, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Personal materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '1', ''),
(669, 32, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(670, 32, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Print Paper\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(671, 32, 3, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Coffee Time\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iwatch</div><div class=\"cbp-l-caption-desc\">Photoshop / Illustrator</div></div></div></div></a></div>', '0', ''),
(672, 32, 6, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iPhone</div><div class=\"cbp-l-caption-desc\">by GraphicBurger</div></div></div></div></a></div>', '0', ''),
(673, 32, 7, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Larch sketchbook</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(674, 32, 5, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div><div class=\"cbp-l-caption-desc\">Wordpress / Photoshop</div></div></div></div></a></div>', '0', ''),
(675, 32, 4, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(676, 32, 8, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Office Materials\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple iMac</div><div class=\"cbp-l-caption-desc\">Mockup / Photoshop</div></div></div></div></a></div>', '0', ''),
(677, 32, 9, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Black Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Radio Desk</div><div class=\"cbp-l-caption-desc\">Fullscreen Video</div></div></div></div></a></div>', '0', ''),
(678, 32, 10, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Sketchbook A4\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Especial coffee cup</div><div class=\"cbp-l-caption-desc\">Pagination / InDesign</div></div></div></div></a></div>', '0', ''),
(679, 32, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Apple Headphones\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple device</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '1', ''),
(680, 32, 2, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Personal materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '1', ''),
(705, 35, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(706, 35, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Print Paper\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(707, 35, 3, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePage\" data-title=\"Coffee Time\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iwatch</div><div class=\"cbp-l-caption-desc\">Photoshop / Illustrator</div></div></div></div></a></div>', '0', ''),
(708, 35, 6, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iPhone</div><div class=\"cbp-l-caption-desc\">by GraphicBurger</div></div></div></div></a></div>', '0', ''),
(709, 35, 7, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple iMac</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(710, 35, 5, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div><div class=\"cbp-l-caption-desc\">Wordpress / Photoshop</div></div></div></div></a></div>', '0', ''),
(711, 35, 4, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(712, 35, 8, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePage\" data-title=\"Office Materials\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Larch sketchbook</div><div class=\"cbp-l-caption-desc\">Mockup / Photoshop</div></div></div></div></a></div>', '0', ''),
(713, 35, 9, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Black Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Radio Desk</div><div class=\"cbp-l-caption-desc\">Fullscreen Video</div></div></div></div></a></div>', '0', ''),
(714, 35, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/book-cover/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Sketchbook A4\"><div class=\"cbp-caption-defaultWrap\"><img src=\"http://treeworks.pt/Larch/portfolios/wp-content/uploads/sites/18/2016/08/p10.jpg\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Book Cover</div><div class=\"cbp-l-caption-desc\">Pagination / InDesign</div></div></div></div></a></div>', '1', ''),
(715, 35, 2, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/outline-ribbon/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Apple Headphones\"><div class=\"cbp-caption-defaultWrap\"><img src=\"http://treeworks.pt/Larch/portfolios/wp-content/uploads/sites/18/2016/08/p11.jpg\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Outline Ribbon</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '1', ''),
(716, 35, 3, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/idevices-mockup/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"http://treekode.com/Larch/wp-content/uploads/sites/18/2016/08/p12.jpg\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">iDevices Mockup</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '1', ''),
(717, 36, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(718, 36, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Print Paper\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(719, 36, 3, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePage\" data-title=\"Coffee Time\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iwatch</div><div class=\"cbp-l-caption-desc\">Photoshop / Illustrator</div></div></div></div></a></div>', '0', ''),
(721, 36, 6, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple iMac</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(722, 36, 5, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div><div class=\"cbp-l-caption-desc\">Wordpress / Photoshop</div></div></div></div></a></div>', '0', ''),
(723, 36, 4, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(724, 36, 7, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePage\" data-title=\"Office Materials\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Larch sketchbook</div><div class=\"cbp-l-caption-desc\">Mockup / Photoshop</div></div></div></div></a></div>', '0', ''),
(725, 36, 8, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Black Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Radio Desk</div><div class=\"cbp-l-caption-desc\">Fullscreen Video</div></div></div></div></a></div>', '0', ''),
(726, 36, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/book-cover/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Sketchbook A4\"><div class=\"cbp-caption-defaultWrap\"><img src=\"http://treeworks.pt/Larch/portfolios/wp-content/uploads/sites/18/2016/08/p10.jpg\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Book Cover</div><div class=\"cbp-l-caption-desc\">Pagination / InDesign</div></div></div></div></a></div>', '1', ''),
(727, 36, 2, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/outline-ribbon/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Apple Headphones\"><div class=\"cbp-caption-defaultWrap\"><img src=\"http://treeworks.pt/Larch/portfolios/wp-content/uploads/sites/18/2016/08/p11.jpg\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Outline Ribbon</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '1', ''),
(728, 36, 3, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/idevices-mockup/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"http://treekode.com/Larch/wp-content/uploads/sites/18/2016/08/p12.jpg\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">iDevices Mockup</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '1', ''),
(729, 37, 1, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://localhost:8888/wordpress/wp-content/uploads/sites/18/2015/06/p3-3.jpg\" class=\"cbp-lightbox cbp-l-caption-buttonRight\">VIDEO</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Clean device display</div><div class=\"cbp-l-grid-projects-desc\">Illustrator / Photoshop</div></div>', '0', ''),
(730, 37, 2, 1, '<div class=\"cbp-item des-project motion cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://www.vimeo.com/126580704\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Paper Bag\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Clean watch</div><div class=\"cbp-l-grid-projects-desc\">Client Envato</div></div>', '0', ''),
(731, 37, 3, 1, '<div class=\"cbp-item des-project graphic cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://localhost:8888/wordpress/wp-content/uploads/sites/18/2015/06/p3-3.jpg\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Glass Bottle\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Black iwatch</div><div class=\"cbp-l-grid-projects-desc\">Photoshop / Illustrator</div></div>', '0', ''),
(732, 37, 4, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://localhost:8888/wordpress/wp-content/uploads/sites/18/2015/05/m6-1.jpg\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Office materials</div><div class=\"cbp-l-grid-projects-desc\">Web Design</div></div>', '0', ''),
(733, 37, 5, 1, '<div class=\"cbp-item des-project logos cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://localhost:8888/wordpress/wp-content/uploads/sites/18/2015/05/m6-1.jpg\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Lightning upgrade</div><div class=\"cbp-l-grid-projects-desc\">Wordpress / Photoshop</div></div>', '0', ''),
(737, 37, 6, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://localhost:8888/wordpress/wp-content/uploads/sites/18/2015/05/m3-2.jpg\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Floating Desk\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Radio Desk</div><div class=\"cbp-l-grid-projects-desc\">Personal project</div></div>', '0', ''),
(739, 37, 7, 1, '<div class=\"cbp-item des-project graphic cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://localhost:8888/wordpress/wp-content/uploads/sites/18/2015/06/p11-2.jpg\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Apple Headphones\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Apple device</div><div class=\"cbp-l-grid-projects-desc\">Graphic</div></div>', '0', ''),
(740, 37, 8, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://localhost:8888/wordpress/wp-content/uploads/sites/18/2016/08/p12.jpg\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Sketchbook A4\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Personal materials</div><div class=\"cbp-l-grid-projects-desc\">Web Design / APP Development</div></div>', '0', ''),
(741, 38, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(742, 38, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Print Paper\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(743, 38, 3, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Coffee Time\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Radio desk</div><div class=\"cbp-l-caption-desc\">Photoshop / Illustrator</div></div></div></div></a></div>', '0', ''),
(744, 38, 6, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Blake Book\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iPhone</div><div class=\"cbp-l-caption-desc\">by GraphicBurger</div></div></div></div></a></div>', '0', ''),
(746, 38, 5, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-lightbox\" data-title=\"Blake Web Site\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div><div class=\"cbp-l-caption-desc\">Wordpress / Photoshop</div></div></div></div></a></div>', '0', ''),
(747, 38, 4, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(750, 38, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/book-cover/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Sketchbook A4\"><div class=\"cbp-caption-defaultWrap\"><img src=\"http://treeworks.pt/Larch/portfolios/wp-content/uploads/sites/18/2016/08/p10.jpg\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Book Cover</div><div class=\"cbp-l-caption-desc\">Pagination / InDesign</div></div></div></div></a></div>', '1', ''),
(751, 38, 2, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/outline-ribbon/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Apple Headphones\"><div class=\"cbp-caption-defaultWrap\"><img src=\"http://treeworks.pt/Larch/portfolios/wp-content/uploads/sites/18/2016/08/p11.jpg\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Outline Ribbon</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '1', ''),
(752, 38, 3, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"http://localhost:8888/wordpress/portfolio/idevices-mockup/\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"http://localhost:8888/wordpress/wp-content/uploads/sites/18/2016/08/p12.jpg\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">iDevices Mockup</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '1', ''),
(753, 39, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Personal Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div><div class=\"cbp-l-caption-desc\">Photoshop</div></div></div></div></a></div>', '0', ''),
(754, 39, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Print Paper\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(755, 39, 3, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Coffee Time\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iwatch</div><div class=\"cbp-l-caption-desc\">Photoshop  \nIllustrator</div></div></div></div></a></div>', '0', ''),
(756, 39, 6, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Blake Book\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Black iPhone</div><div class=\"cbp-l-caption-desc\">by GraphicBurger</div></div></div></div></a></div>', '0', ''),
(757, 39, 7, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Larch sketchbook</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(758, 39, 5, 1, '<div class=\"cbp-item des-project gallery cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Blake Web Site\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Lightning upgrade</div><div class=\"cbp-l-caption-desc\">Wordpress\nPhotoshop</div></div></div></div></a></div>', '0', ''),
(759, 39, 4, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Ipad\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(760, 39, 8, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Office Materials\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple iMac</div><div class=\"cbp-l-caption-desc\">Mockup\nPhotoshop</div></div></div></div></a></div>', '0', ''),
(761, 39, 9, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Black Sketchbook\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Radio Desk</div><div class=\"cbp-l-caption-desc\">Client Envato\n20/08/2016</div></div></div></div></a></div>', '0', '');
INSERT INTO `wp_cubeportfolio_items` (`id`, `cubeportfolio_id`, `sort`, `page`, `items`, `isLoadMore`, `isSinglePage`) VALUES
(762, 39, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Sketchbook A4\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Especial coffee cup</div><div class=\"cbp-l-caption-desc\">Pagination\nInDesign</div></div></div></div></a></div>', '1', ''),
(763, 39, 2, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"Apple Headphones\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple device</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '1', ''),
(764, 39, 3, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-singlePageInline\" data-title=\"White Apple Watch\" data-cbp-selector=\"automatically\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Personal materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '1', ''),
(774, 41, 8, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Personal materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(775, 41, 7, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Apple Headphones\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple device</div><div class=\"cbp-l-caption-desc\">Illustrator</div></div></div></div></a></div>', '0', ''),
(776, 41, 6, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Sketchbook A4\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Especial coffee cup</div><div class=\"cbp-l-caption-desc\">Pagination / InDesign</div></div></div></div></a></div>', '0', ''),
(777, 41, 5, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Black Sketchbook\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Radio Desk</div><div class=\"cbp-l-caption-desc\">DATE: 20/08/2016</div></div></div></div></a></div>', '0', ''),
(778, 41, 4, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Office Materials\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Apple iMac</div><div class=\"cbp-l-caption-desc\">Mockup / Photoshop</div></div></div></div></a></div>', '0', ''),
(779, 41, 3, 1, '<div class=\"cbp-item des-project image cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"White Apple Ipad\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Office materials</div><div class=\"cbp-l-caption-desc\">Photography / Photoshop</div></div></div></div></a></div>', '0', ''),
(784, 41, 2, 1, '<div class=\"cbp-item des-project video cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Print Paper\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean watch</div><div class=\"cbp-l-caption-desc\">Client Envato</div></div></div></div></a></div>', '0', ''),
(785, 41, 1, 1, '<div class=\"cbp-item des-project slider cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><a href=\"\" class=\"cbp-caption cbp-simpleLink\" data-title=\"Blake Personal Watch\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignLeft\"><div class=\"cbp-l-caption-body\"><div class=\"cbp-l-caption-title\">Clean device display</div><div class=\"cbp-l-caption-desc\">Illustrator / Photoshop</div></div></div></div></a></div>', '0', ''),
(798, 13, 5, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Floating Desk\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Especial Coffee Cup</div><div class=\"cbp-l-grid-projects-desc\">Mockup / PSD</div></div>', '0', ''),
(799, 13, 7, 1, '<div class=\"cbp-item des-project logos cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Apple iMac</div><div class=\"cbp-l-grid-projects-desc\">Web Design / Development</div></div>', '0', ''),
(800, 13, 12, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Floating Desk\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Larch Sketchbook</div><div class=\"cbp-l-grid-projects-desc\">Personal project</div></div>', '0', ''),
(801, 42, 11, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Sketchbook A4\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Personal materials</div><div class=\"cbp-l-grid-projects-desc\">Web Design / APP Development</div></div>', '0', ''),
(802, 42, 9, 1, '<div class=\"cbp-item des-project graphic cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Apple Headphones\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Apple device</div><div class=\"cbp-l-grid-projects-desc\">Graphic</div></div>', '0', ''),
(803, 42, 12, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Floating Desk\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Larch Sketchbook</div><div class=\"cbp-l-grid-projects-desc\">Personal project</div></div>', '0', ''),
(804, 42, 8, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Floating Desk\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Radio Desk</div><div class=\"cbp-l-grid-projects-desc\">Personal project</div></div>', '0', ''),
(805, 42, 5, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Floating Desk\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Especial Coffee Cup</div><div class=\"cbp-l-grid-projects-desc\">Mockup / PSD</div></div>', '0', ''),
(806, 42, 7, 1, '<div class=\"cbp-item des-project logos cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Apple iMac</div><div class=\"cbp-l-grid-projects-desc\">Web Design / Development</div></div>', '0', ''),
(807, 42, 10, 1, '<div class=\"cbp-item des-project branding cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Paper Packaging\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Black iPhone</div><div class=\"cbp-l-grid-projects-desc\">by GraphicBurger</div></div>', '0', ''),
(808, 42, 6, 1, '<div class=\"cbp-item des-project logos cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Lightning upgrade</div><div class=\"cbp-l-grid-projects-desc\">Wordpress / Photoshop</div></div>', '0', ''),
(809, 42, 4, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Office materials</div><div class=\"cbp-l-grid-projects-desc\">Web Design</div></div>', '0', ''),
(810, 42, 3, 1, '<div class=\"cbp-item des-project graphic cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Glass Bottle\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Apple iwatch</div><div class=\"cbp-l-grid-projects-desc\">Photoshop / Illustrator</div></div>', '0', ''),
(811, 42, 2, 1, '<div class=\"cbp-item des-project motion cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://www.vimeo.com/126580704\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Paper Bag\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Clean watch</div><div class=\"cbp-l-grid-projects-desc\">Client Envato</div></div>', '0', ''),
(812, 42, 1, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Clean device display</div><div class=\"cbp-l-grid-projects-desc\">Illustrator / Photoshop</div></div>', '0', ''),
(813, 43, 11, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Sketchbook A4\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Personal materials</div><div class=\"cbp-l-grid-projects-desc\">Web Design / APP Development</div></div>', '0', ''),
(814, 43, 9, 1, '<div class=\"cbp-item des-project graphic cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Apple Headphones\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Apple device</div><div class=\"cbp-l-grid-projects-desc\">Graphic</div></div>', '0', ''),
(815, 43, 12, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Floating Desk\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Larch Sketchbook</div><div class=\"cbp-l-grid-projects-desc\">Personal project</div></div>', '0', ''),
(816, 43, 8, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Floating Desk\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Radio Desk</div><div class=\"cbp-l-grid-projects-desc\">Personal project</div></div>', '0', ''),
(817, 43, 5, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Floating Desk\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Especial Coffee Cup</div><div class=\"cbp-l-grid-projects-desc\">Mockup / PSD</div></div>', '0', ''),
(818, 43, 7, 1, '<div class=\"cbp-item des-project logos cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Apple iMac</div><div class=\"cbp-l-grid-projects-desc\">Web Design / Development</div></div>', '0', ''),
(819, 43, 10, 1, '<div class=\"cbp-item des-project branding cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Paper Packaging\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Black iPhone</div><div class=\"cbp-l-grid-projects-desc\">by GraphicBurger</div></div>', '0', ''),
(820, 43, 6, 1, '<div class=\"cbp-item des-project logos cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Lightning upgrade</div><div class=\"cbp-l-grid-projects-desc\">Wordpress / Photoshop</div></div>', '0', ''),
(821, 43, 4, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Colors in a Girl\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Office materials</div><div class=\"cbp-l-grid-projects-desc\">Web Design</div></div>', '0', ''),
(822, 43, 3, 1, '<div class=\"cbp-item des-project graphic cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Glass Bottle\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Apple iwatch</div><div class=\"cbp-l-grid-projects-desc\">Photoshop / Illustrator</div></div>', '0', ''),
(823, 43, 2, 1, '<div class=\"cbp-item des-project motion cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"http://www.vimeo.com/126580704\" class=\"cbp-lightbox cbp-l-caption-buttonRight\" data-title=\"Paper Bag\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Clean watch</div><div class=\"cbp-l-grid-projects-desc\">Client Envato</div></div>', '0', ''),
(824, 43, 1, 1, '<div class=\"cbp-item des-project mockup cbp-ratio-masonry\" data-cbp-coverratio=\"0:0\"><div class=\"cbp-caption\"><div class=\"cbp-caption-defaultWrap\"><img src=\"\" alt=\"\"></div><div class=\"cbp-caption-activeWrap\"><div class=\"cbp-l-caption-alignCenter\"><div class=\"cbp-l-caption-body\"><a href=\"\" class=\"cbp-simpleLink cbp-l-caption-buttonLeft\">MORE</a><a href=\"\" class=\"cbp-lightbox cbp-l-caption-buttonRight\">ZOOM</a></div></div></div></div><div class=\"cbp-l-grid-projects-title\">Clean device display</div><div class=\"cbp-l-grid-projects-desc\">Illustrator / Photoshop</div></div>', '0', '');

-- --------------------------------------------------------

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

CREATE TABLE `wp_links` (
  `link_id` bigint(20) UNSIGNED NOT NULL,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_options`
--

CREATE TABLE `wp_options` (
  `option_id` bigint(20) UNSIGNED NOT NULL,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wp_options`
--

INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost:8888/wordpress', 'yes'),
(2, 'home', 'http://localhost:8888/wordpress', 'yes'),
(3, 'blogname', 'Engaging Futures', 'yes'),
(4, 'blogdescription', 'We create preferred futures', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'drcolinrusso@gmail.com', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'd/m/Y', 'yes'),
(24, 'time_format', 'H:i', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:262:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:63:\"cubeportfolio_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?cubeportfolio_category=$matches[1]&feed=$matches[2]\";s:58:\"cubeportfolio_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?cubeportfolio_category=$matches[1]&feed=$matches[2]\";s:39:\"cubeportfolio_category/([^/]+)/embed/?$\";s:55:\"index.php?cubeportfolio_category=$matches[1]&embed=true\";s:51:\"cubeportfolio_category/([^/]+)/page/?([0-9]{1,})/?$\";s:62:\"index.php?cubeportfolio_category=$matches[1]&paged=$matches[2]\";s:33:\"cubeportfolio_category/([^/]+)/?$\";s:44:\"index.php?cubeportfolio_category=$matches[1]\";s:41:\"cubeportfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"cubeportfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"cubeportfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"cubeportfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"cubeportfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"cubeportfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"cubeportfolio/([^/]+)/embed/?$\";s:46:\"index.php?cubeportfolio=$matches[1]&embed=true\";s:34:\"cubeportfolio/([^/]+)/trackback/?$\";s:40:\"index.php?cubeportfolio=$matches[1]&tb=1\";s:42:\"cubeportfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?cubeportfolio=$matches[1]&paged=$matches[2]\";s:49:\"cubeportfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?cubeportfolio=$matches[1]&cpage=$matches[2]\";s:39:\"cubeportfolio/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?cubeportfolio=$matches[1]&wc-api=$matches[3]\";s:45:\"cubeportfolio/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"cubeportfolio/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"cubeportfolio/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?cubeportfolio=$matches[1]&page=$matches[2]\";s:30:\"cubeportfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"cubeportfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"cubeportfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"cubeportfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"cubeportfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"cubeportfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:38:\"vc_grid_item/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?vc_grid_item=$matches[1]&wc-api=$matches[3]\";s:44:\"vc_grid_item/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"vc_grid_item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio_category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio_category=$matches[1]&feed=$matches[2]\";s:35:\"portfolio_category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio_category=$matches[1]&embed=true\";s:47:\"portfolio_category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio_category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio_category/([^/]+)/?$\";s:40:\"index.php?portfolio_category=$matches[1]\";s:55:\"portfolio_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_type=$matches[1]&feed=$matches[2]\";s:50:\"portfolio_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_type=$matches[1]&feed=$matches[2]\";s:31:\"portfolio_type/([^/]+)/embed/?$\";s:47:\"index.php?portfolio_type=$matches[1]&embed=true\";s:43:\"portfolio_type/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?portfolio_type=$matches[1]&paged=$matches[2]\";s:25:\"portfolio_type/([^/]+)/?$\";s:36:\"index.php?portfolio_type=$matches[1]\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:35:\"portfolio/([^/]+)/wc-api(/(.*))?/?$\";s:50:\"index.php?portfolio=$matches[1]&wc-api=$matches[3]\";s:41:\"portfolio/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"portfolio/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:62:\"testimonials_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?testimonials_category=$matches[1]&feed=$matches[2]\";s:57:\"testimonials_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?testimonials_category=$matches[1]&feed=$matches[2]\";s:38:\"testimonials_category/([^/]+)/embed/?$\";s:54:\"index.php?testimonials_category=$matches[1]&embed=true\";s:50:\"testimonials_category/([^/]+)/page/?([0-9]{1,})/?$\";s:61:\"index.php?testimonials_category=$matches[1]&paged=$matches[2]\";s:32:\"testimonials_category/([^/]+)/?$\";s:43:\"index.php?testimonials_category=$matches[1]\";s:40:\"testimonials/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"testimonials/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"testimonials/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"testimonials/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"testimonials/([^/]+)/embed/?$\";s:45:\"index.php?testimonials=$matches[1]&embed=true\";s:33:\"testimonials/([^/]+)/trackback/?$\";s:39:\"index.php?testimonials=$matches[1]&tb=1\";s:41:\"testimonials/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&paged=$matches[2]\";s:48:\"testimonials/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&cpage=$matches[2]\";s:38:\"testimonials/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?testimonials=$matches[1]&wc-api=$matches[3]\";s:44:\"testimonials/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"testimonials/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"testimonials/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?testimonials=$matches[1]&page=$matches[2]\";s:29:\"testimonials/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"testimonials/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"testimonials/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"testimonials/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=18&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:18:{i:0;s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";i:1;s:33:\"classic-editor/classic-editor.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:31:\"cubeportfolio/cubeportfolio.php\";i:4;s:39:\"easy-theme-and-plugin-upgrades/init.php\";i:5;s:31:\"envato-market/envato-market.php\";i:6;s:27:\"js_composer/js_composer.php\";i:7;s:51:\"maple_custom_post_types/maple_custom_post_types.php\";i:8;s:57:\"meks-easy-instagram-widget/meks-easy-instagram-widget.php\";i:9;s:47:\"really-simple-captcha/really-simple-captcha.php\";i:10;s:59:\"revslider-beforeafter-addon/revslider-beforeafter-addon.php\";i:11;s:67:\"revslider-explodinglayers-addon/revslider-explodinglayers-addon.php\";i:12;s:55:\"revslider-particles-addon/revslider-particles-addon.php\";i:13;s:49:\"revslider-slicey-addon/revslider-slicey-addon.php\";i:14;s:23:\"revslider/revslider.php\";i:15;s:53:\"widget-importer-exporter/widget-importer-exporter.php\";i:16;s:27:\"woocommerce/woocommerce.php\";i:17;s:41:\"wordpress-importer/wordpress-importer.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '10', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', 'a:2:{i:0;s:75:\"/Applications/MAMP/htdocs/wordpress/wp-content/themes/maple-child/style.css\";i:2;s:0:\"\";}', 'no'),
(40, 'template', 'maple', 'yes'),
(41, 'stylesheet', 'maple-child', 'yes'),
(42, 'comment_registration', '0', 'yes'),
(43, 'html_type', 'text/html', 'yes'),
(44, 'use_trackback', '0', 'yes'),
(45, 'default_role', 'subscriber', 'yes'),
(46, 'db_version', '48748', 'yes'),
(47, 'uploads_use_yearmonth_folders', '1', 'yes'),
(48, 'upload_path', '', 'yes'),
(49, 'blog_public', '0', 'yes'),
(50, 'default_link_category', '2', 'yes'),
(51, 'show_on_front', 'page', 'yes'),
(52, 'tag_base', '', 'yes'),
(53, 'show_avatars', '1', 'yes'),
(54, 'avatar_rating', 'G', 'yes'),
(55, 'upload_url_path', '', 'yes'),
(56, 'thumbnail_size_w', '150', 'yes'),
(57, 'thumbnail_size_h', '150', 'yes'),
(58, 'thumbnail_crop', '1', 'yes'),
(59, 'medium_size_w', '300', 'yes'),
(60, 'medium_size_h', '300', 'yes'),
(61, 'avatar_default', 'mystery', 'yes'),
(62, 'large_size_w', '1024', 'yes'),
(63, 'large_size_h', '1024', 'yes'),
(64, 'image_default_link_type', 'none', 'yes'),
(65, 'image_default_size', '', 'yes'),
(66, 'image_default_align', '', 'yes'),
(67, 'close_comments_for_old_posts', '0', 'yes'),
(68, 'close_comments_days_old', '14', 'yes'),
(69, 'thread_comments', '1', 'yes'),
(70, 'thread_comments_depth', '5', 'yes'),
(71, 'page_comments', '0', 'yes'),
(72, 'comments_per_page', '50', 'yes'),
(73, 'default_comments_page', 'newest', 'yes'),
(74, 'comment_order', 'asc', 'yes'),
(75, 'sticky_posts', 'a:0:{}', 'yes'),
(76, 'widget_categories', 'a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(77, 'widget_text', 'a:2:{i:1;a:0:{}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:0:{}', 'no'),
(80, 'timezone_string', '', 'yes'),
(81, 'page_for_posts', '0', 'yes'),
(82, 'page_on_front', '18', 'yes'),
(83, 'default_post_format', '0', 'yes'),
(84, 'link_manager_enabled', '0', 'yes'),
(85, 'finished_splitting_shared_terms', '1', 'yes'),
(86, 'site_icon', '62', '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', '1620530410', 'yes'),
(92, 'disallowed_keys', '', 'no'),
(93, 'comment_previously_approved', '1', 'yes'),
(94, 'auto_plugin_theme_update_emails', 'a:0:{}', '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:114:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}', 'yes'),
(97, 'fresh_site', '0', 'yes'),
(98, 'widget_search', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(99, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(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:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-widgets\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:21:\"sliding_panel_sidebar\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:21:\"bootom_footer_sidebar\";a:0:{}s:24:\"footer-three-column-left\";a:0:{}s:26:\"footer-three-column-center\";a:0:{}s:25:\"footer-three-column-right\";a:0:{}s:13:\"array_version\";i:3;}', 'yes'),
(104, 'cron', 'a:17:{i:1606029778;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1606031113;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:1606031121;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:1606031490;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1606033211;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:1606038294;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1606058411;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1606089600;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1606101610;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1606101619;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1606101622;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:1606103104;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1606103113;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:1606113894;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1606274410;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1606275954;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}', 'yes'),
(105, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(106, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(115, 'recovery_keys', 'a:0:{}', 'yes'),
(117, 'theme_mods_twentytwenty', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1604979195;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}', 'yes'),
(128, 'can_compress_scripts', '1', 'no'),
(143, 'finished_updating_comment_type', '1', 'yes'),
(145, 'ultimate_smooth_scroll', 'enable', 'yes'),
(146, 'widget_maple_projects_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(147, 'widget_maple_recentcomments_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(148, 'widget_maple_recentpostssidebar_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(149, 'widget_maple_recentpostssidebar2_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(150, 'widget_maple_instagram_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(151, 'widget_maple_testimonials_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(152, 'widget_maple_flickr_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(153, 'widget_maple_video_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(154, 'widget_maple_contactinfo_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(155, 'widget_maple_vcelement_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(158, 'theme_mods_maple', 'a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1604980352;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-widgets\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:21:\"sliding_panel_sidebar\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:21:\"bootom_footer_sidebar\";a:0:{}s:24:\"footer-three-column-left\";a:0:{}s:26:\"footer-three-column-center\";a:0:{}s:25:\"footer-three-column-right\";a:0:{}}}}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(161, 'theme_mods_maple-child', 'a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:17:\"PrimaryNavigation\";i:19;s:9:\"topbarnav\";i:19;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1604980013;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-widgets\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:21:\"sliding_panel_sidebar\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:21:\"bootom_footer_sidebar\";a:0:{}s:24:\"footer-three-column-left\";a:0:{}s:26:\"footer-three-column-center\";a:0:{}s:25:\"footer-three-column-right\";a:0:{}}}}', 'yes'),
(163, 'current_theme', 'Maple Child', 'yes'),
(164, 'theme_switched', '', 'yes'),
(165, 'maple_enable_smooth_scroll', 'on', 'yes'),
(166, 'maple_enable_website_loader', 'off', 'yes'),
(168, 'maple_enable_website_loader_percentage', 'off', 'yes'),
(169, 'maple_enable_website_loader_logo', 'on', 'yes'),
(170, 'maple_update_section_titles', 'off', 'yes'),
(171, 'maple_enable_gotop', 'on', 'yes'),
(172, 'maple_enable_grayscale', 'off', 'yes'),
(173, 'maple_blog_archive_sidebar', 'none', 'yes'),
(174, 'maple_blog_archive_style', 'normal', 'yes'),
(175, 'maple_blog_reading_type', 'paged', 'yes'),
(176, 'maple_blog_single_primary_title', 'Blog', 'yes'),
(177, 'maple_blog_single_sidebar', 'right', 'yes'),
(178, 'maple_enlarge_images', 'off', 'yes'),
(179, 'maple_post_single_social_shares', 'on', 'yes'),
(180, 'maple_post_single_socials', 'facebook,twitter,linkedin,googleplus,pinterest,tumblr,email', 'yes'),
(181, 'maple_portfolio_permalink', 'portfolio', 'yes'),
(182, 'maple_single_layout', 'full_media', 'yes'),
(183, 'maple_project_single_social_shares', 'on', 'yes'),
(184, 'maple_project_single_socials', 'facebook,twitter,linkedin,googleplus,pinterest,tumblr,email', 'yes'),
(185, 'maple_shop_primary_title', 'Shop', 'yes'),
(186, 'maple_woo_sidebar_scheme', 'right', 'yes'),
(187, 'ultimate_selected_google_fonts', 'a:0:{}', 'yes'),
(188, 'maple_header_style_type', 'style2', 'yes'),
(189, 'maple_header_style_light_dark', 'light', 'yes'),
(190, 'maple_header_full_width', 'on', 'yes'),
(191, 'maple_header_hover_line', 'off', 'yes'),
(192, 'maple_fixed_menu', 'on', 'yes'),
(193, 'maple_header_hide_on_start', 'off', 'yes'),
(194, 'maple_content_to_the_top', 'off', 'yes'),
(195, 'maple_header_after_scroll', 'on', 'yes'),
(196, 'maple_header_after_scroll_style_light_dark', 'light', 'yes'),
(197, 'maple_header_shrink_effect', 'on', 'yes'),
(198, 'maple_woocommerce_cart', 'off', 'yes'),
(199, 'maple_sliding_panel', 'off', 'yes'),
(200, 'maple_social_icons_menu', 'off', 'yes'),
(201, 'maple_logo_image_url_light', 'http://treethemes.net/themes/maple/wp-content/uploads/2017/02/logo_light.png', 'yes'),
(202, 'maple_logo_retina_image_url_light', 'http://treethemes.net/themes/maple/wp-content/uploads/2017/02/logo_light@2x.png', 'yes'),
(203, 'maple_logo_image_url_dark', 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/logo_edited_edited.png', 'yes'),
(204, 'maple_logo_retina_image_url_dark', 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/logo_edited_edited.png', 'yes'),
(205, 'maple_logo_intro_image_url', 'http://treethemes.net/themes/maple/wp-content/uploads/2017/02/logo_dark.png', 'yes'),
(206, 'maple_logo_intro_retina_image_url', 'http://treethemes.net/themes/maple/wp-content/uploads/2017/02/logo_dark@2x.png', 'yes'),
(207, 'maple_info_above_menu', 'off', 'yes'),
(208, 'maple_wpml_menu_widget', 'off', 'yes'),
(209, 'maple_top_bar_menu', 'off', 'yes'),
(210, 'maple_telephone_menu', '', 'yes'),
(211, 'maple_email_menu', '', 'yes'),
(212, 'maple_address_menu', '', 'yes'),
(213, 'maple_text_field_menu', '', 'yes'),
(214, 'maple_enable_socials', 'on', 'yes'),
(215, 'maple_enable_search', 'on', 'yes'),
(216, 'maple_enable_ajax_search', 'off', 'yes'),
(217, 'maple_enable_search_everything', 'on', 'yes'),
(218, 'maple_search_archive_sidebar', 'right', 'yes'),
(219, 'maple_search_show_author', 'on', 'yes'),
(220, 'maple_search_show_date', 'on', 'yes'),
(221, 'maple_search_show_tags', 'off', 'yes'),
(222, 'maple_search_show_categories', 'off', 'yes'),
(223, 'maple_footer_number_cols', 'three', 'yes'),
(224, 'maple_footer_columns_order', 'one_three', 'yes'),
(225, 'maple_footer_columns_order_four', 'one_four', 'yes'),
(226, 'maple_footer_full_width', 'on', 'yes'),
(227, 'maple_footer_display_logo', 'on', 'yes'),
(228, 'maple_footer_logo_image_url', 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-14-at-22.35.05.png', 'yes'),
(229, 'maple_footer_logo_retina_image_url', 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-14-at-22.47.29.png', 'yes'),
(230, 'maple_footer_logo_alignment', 'center', 'yes'),
(231, 'maple_footer_display_social_icons', 'on', 'yes'),
(232, 'maple_footer_social_icons_alignment', 'center', 'yes'),
(233, 'maple_footer_display_custom_text', 'on', 'yes'),
(234, 'maple_footer_custom_text', '<p>\\\"We are Engaging Futures and through our Clients, the year 2050 Starts Today\\\" Engaging Futures © 2021</p>', 'yes'),
(235, 'maple_footer_custom_text_alignment', 'center', 'yes'),
(236, 'maple_posts_flex_navigation', 'on', 'yes'),
(237, 'maple_posts_flex_controls', 'on', 'yes'),
(238, 'maple_posts_flex_transition', 'slide', 'yes'),
(239, 'maple_posts_flex_transition_duration', '500', 'yes'),
(240, 'maple_posts_flex_slide_duration', '5500', 'yes'),
(241, 'maple_posts_flex_autoplay', 'on', 'yes'),
(242, 'maple_posts_flex_pause_hover', 'on', 'yes'),
(243, 'maple_posts_flex_height', '400px', 'yes'),
(244, 'maple_projs_flex_navigation', 'on', 'yes'),
(245, 'maple_projs_flex_controls', 'on', 'yes'),
(246, 'maple_projs_flex_transition', 'slide', 'yes'),
(247, 'maple_projs_flex_transition_duration', '500', 'yes'),
(248, 'maple_projs_flex_slide_duration', '5500', 'yes'),
(249, 'maple_projs_flex_autoplay', 'on', 'yes'),
(250, 'maple_projs_flex_pause_hover', 'on', 'yes'),
(251, 'maple_projs_flex_height', '400px', 'yes'),
(252, 'maple_breadcrumbs_home_text', 'Home', 'yes'),
(253, 'maple_you_are_here', 'You are here:', 'yes'),
(254, 'maple_next_single_proj', 'Next Project', 'yes'),
(255, 'maple_prev_single_proj', 'Previous Project', 'yes'),
(256, 'maple_share_proj_text', 'SHARE THIS PROJECT', 'yes'),
(257, 'maple_read_more', 'read more', 'yes'),
(258, 'maple_previous_text', 'Previous posts', 'yes'),
(259, 'maple_next_text', 'Next posts', 'yes'),
(260, 'maple_single_previous_text', 'Previous post', 'yes'),
(261, 'maple_single_next_text', 'Next post', 'yes'),
(262, 'maple_by_text', 'by', 'yes'),
(263, 'maple_in_text', 'In', 'yes'),
(264, 'maple_tags_text', 'Tags', 'yes'),
(265, 'maple_load_more_posts_text', 'Load More Posts', 'yes'),
(266, 'maple_no_more_posts_text', 'No more posts to load.', 'yes'),
(267, 'maple_loading_posts_text', 'Loading posts...', 'yes'),
(268, 'maple_share_post_text', 'SHARE THIS', 'yes'),
(269, 'maple_no_comments_text', 'No comments', 'yes'),
(270, 'maple_comment_text', 'comment', 'yes'),
(271, 'maple_comments_text', 'comments', 'yes'),
(272, 'maple_search_box_text', 'Find what you want...', 'yes'),
(273, 'maple_search_results_text', 'Search results for', 'yes'),
(274, 'maple_no_results_text', 'No results found.', 'yes'),
(275, 'maple_next_results', 'Next results', 'yes'),
(276, 'maple_previous_results', 'Previous results', 'yes'),
(277, 'maple_404_heading', 'Oops! There is nothing here...', 'yes'),
(278, 'maple_404_text', 'It seems we can\\\'t find what you\\\'re looking for. Perhaps searching one of the links in the above menu, can help.', 'yes'),
(279, 'maple_404_button_text', 'GO TO HOMEPAGE', 'yes'),
(280, 'maple_icon-houzz', '', 'yes'),
(281, 'maple_icon-facebook', '', 'yes'),
(282, 'maple_icon-twitter', '', 'yes'),
(283, 'maple_icon-tumblr', '', 'yes'),
(284, 'maple_icon-stumbleupon', '', 'yes'),
(285, 'maple_icon-flickr', '', 'yes'),
(286, 'maple_icon-linkedin', '', 'yes'),
(287, 'maple_icon-delicious', '', 'yes'),
(288, 'maple_icon-skype', '', 'yes'),
(289, 'maple_icon-digg', '', 'yes'),
(290, 'maple_icon-google-plus', '', 'yes'),
(291, 'maple_icon-vimeo-square', '', 'yes'),
(292, 'maple_icon-deviantart', '', 'yes'),
(293, 'maple_icon-behance', '', 'yes'),
(294, 'maple_icon-instagram', '', 'yes'),
(295, 'maple_icon-blogger', '', 'yes'),
(296, 'maple_icon-wordpress', '', 'yes'),
(297, 'maple_icon-youtube', '', 'yes'),
(298, 'maple_icon-reddit', '', 'yes'),
(299, 'maple_icon-rss', '', 'yes'),
(300, 'maple_icon-soundcloud', '', 'yes'),
(301, 'maple_icon-pinterest', '', 'yes'),
(302, 'maple_icon-dribbble', '', 'yes'),
(303, 'maple_icon-line', '', 'yes'),
(304, 'maple_icon-weixin', '', 'yes'),
(305, 'maple_icon-tripadvisor', '', 'yes'),
(306, 'maple_icon-envelope', '', 'yes'),
(307, 'maple_icon-vk', '', 'yes'),
(308, 'maple_icon-twitch', '', 'yes'),
(309, 'maple_icon-foursquare', '', 'yes'),
(310, 'maple_icon-slack', '', 'yes'),
(311, 'maple_icon-whatsapp', '', 'yes'),
(312, 'enable_custom_css', 'on', 'yes'),
(313, 'maple_style_color', 'd8d8d8', 'yes'),
(314, 'maple_body_type', 'body_wide', 'yes'),
(315, 'maple_bodybg_type', 'color', 'yes'),
(316, 'maple_bodybg_type_color', '__USE_THEME_MAIN_COLOR__', 'yes'),
(317, 'maple_loader_background', 'ffffff', 'yes'),
(318, 'maple_loader_color', '__USE_THEME_MAIN_COLOR__', 'yes'),
(319, 'maple_loader_percentage_font', 'Helvetica Neue', 'yes'),
(320, 'maple_loader_percentage_font_size', '15 px', 'yes'),
(321, 'maple_loader_percentage_font_color', '__USE_THEME_MAIN_COLOR__', 'yes'),
(322, 'maple_headerbg_type_light', 'color', 'yes'),
(323, 'maple_headerbg_color_light', 'ffffff', 'yes'),
(324, 'maple_headerbg_opacity_light', '0%', 'yes'),
(325, 'maple_header_icons_color_light', '333333', 'yes'),
(326, 'maple_header_icons_hover_color_light', 'd8d8d8', 'yes'),
(327, 'maple_headerbg_after_scroll_type_light', 'color', 'yes'),
(328, 'maple_headerbg_after_scroll_color_light', 'ffffff', 'yes'),
(329, 'maple_headerbg_after_scroll_opacity_light', '100', 'yes'),
(330, 'maple_header_after_scroll_icons_color_light', '333333', 'yes'),
(331, 'maple_header_after_scroll_icons_hover_color_light', 'd8d8d8', 'yes'),
(332, 'maple_headerbg_type_dark', 'color', 'yes'),
(333, 'maple_headerbg_color_dark', '101010', 'yes'),
(334, 'maple_headerbg_opacity_dark', '0%', 'yes'),
(335, 'maple_header_icons_color_dark', 'ebebeb', 'yes'),
(336, 'maple_header_icons_hover_color_dark', 'ffffff', 'yes'),
(337, 'maple_headerbg_after_scroll_type_dark', 'color', 'yes'),
(338, 'maple_headerbg_after_scroll_color_dark', '101010', 'yes'),
(339, 'maple_headerbg_after_scroll_opacity_dark', '100%', 'yes'),
(340, 'maple_header_after_scroll_icons_color_dark', '808080', 'yes'),
(341, 'maple_header_after_scroll_icons_hover_color_dark', 'd8d8d8', 'yes'),
(342, 'maple_topbar_bg_color', '101010', 'yes'),
(343, 'maple_topbar_bg_opacity', '90', 'yes'),
(344, 'maple_topbar_text_color', '808080', 'yes'),
(345, 'maple_topbar_links_color', '808080', 'yes'),
(346, 'maple_topbar_links_hover_color', 'd8d8d8', 'yes'),
(347, 'maple_topbar_social_color', '808080', 'yes'),
(348, 'maple_topbar_social_hover_color', 'd8d8d8', 'yes'),
(349, 'maple_topbar_borders_color', '000000', 'yes'),
(350, 'maple_topbar_submenu_bg_color', '000000', 'yes'),
(351, 'maple_topbar_submenu_bg_hover_color', '000000', 'yes'),
(352, 'maple_topbar_submenu_text_color', '808080', 'yes'),
(353, 'maple_topbar_submenu_text_hover_color', 'd8d8d8', 'yes'),
(354, 'maple_logo_margin_top', '28 px', 'yes'),
(355, 'maple_logo_margin_left', '0px', 'yes'),
(356, 'maple_logo_height', '18px', 'yes'),
(357, 'maple_logo_after_scroll_margin_top', '20 px', 'yes'),
(358, 'maple_logo_after_scroll_margin_left', '0px', 'yes'),
(359, 'maple_logo_reduced_height', '18px', 'yes'),
(360, 'mobile_maple_logo_margin_top', '18px', 'yes'),
(361, 'mobile_maple_logo_height', '18px', 'yes'),
(362, 'mobile_maple_logo_after_scroll_margin_top', '18px', 'yes'),
(363, 'mobile_maple_logo_reduced_height', '18px', 'yes'),
(364, 'intro_maple_logo_margin_top', '5px', 'yes'),
(365, 'intro_maple_logo_margin_left', '25px', 'yes'),
(366, 'intro_maple_logo_height', '18px', 'yes'),
(367, 'footer_maple_logo_margin', '20px', 'yes'),
(368, 'footer_maple_logo_height', '18px', 'yes'),
(369, 'maple_menu_font_pre_light', 'Helvetica Neue', 'yes'),
(370, 'maple_menu_color_pre_light', 'e0e0e0', 'yes'),
(371, 'maple_menu_color_hover_pre_light', 'ffffff', 'yes'),
(372, 'maple_menu_font_size_pre_light', '11px', 'yes'),
(373, 'maple_menu_uppercase_pre_light', 'on', 'yes'),
(374, 'maple_menu_letter_spacing_pre_light', '3px', 'yes'),
(375, 'maple_menu_add_border_pre_light', 'off', 'yes'),
(376, 'maple_menu_border_color_pre_light', '000000', 'yes'),
(377, 'maple_menu_side_margin_pre_light', '20px', 'yes'),
(378, 'maple_menu_margin_top_pre_light', '25px', 'yes'),
(379, 'maple_menu_padding_bottom_pre_light', '25px', 'yes'),
(380, 'maple_menu_font_after_light', 'Helvetica Neue', 'yes'),
(381, 'maple_menu_color_after_light', 'a8a8a8', 'yes'),
(382, 'maple_menu_color_hover_after_light', 'ffffff', 'yes'),
(383, 'maple_menu_font_size_after_light', '11px', 'yes'),
(384, 'maple_menu_uppercase_after_light', 'on', 'yes'),
(385, 'maple_menu_letter_spacing_after_light', '3px', 'yes'),
(386, 'maple_menu_add_border_after_light', 'off', 'yes'),
(387, 'maple_menu_border_color_after_light', '000000', 'yes'),
(388, 'maple_menu_side_margin_after_light', '20px', 'yes'),
(389, 'maple_menu_margin_top_after_light', '15px', 'yes'),
(390, 'maple_menu_padding_bottom_after_light', '15px', 'yes'),
(391, 'maple_menu_font_pre_dark', 'Helvetica Neue', 'yes'),
(392, 'maple_menu_color_pre_dark', '444444', 'yes'),
(393, 'maple_menu_color_hover_pre_dark', '999999', 'yes'),
(394, 'maple_menu_font_size_pre_dark', '11px', 'yes'),
(395, 'maple_menu_uppercase_pre_dark', 'on', 'yes'),
(396, 'maple_menu_letter_spacing_pre_dark', '3px', 'yes'),
(397, 'maple_menu_add_border_pre_dark', 'off', 'yes'),
(398, 'maple_menu_border_color_pre_dark', '000000', 'yes'),
(399, 'maple_menu_side_margin_pre_dark', '20px', 'yes'),
(400, 'maple_menu_margin_top_pre_dark', '25px', 'yes'),
(401, 'maple_menu_padding_bottom_pre_dark', '25px', 'yes'),
(402, 'maple_menu_font_after_dark', 'Helvetica Neue', 'yes'),
(403, 'maple_menu_color_after_dark', '444444', 'yes'),
(404, 'maple_menu_color_hover_after_dark', '999999', 'yes'),
(405, 'maple_menu_font_size_after_dark', '11px', 'yes'),
(406, 'maple_menu_uppercase_after_dark', 'on', 'yes'),
(407, 'maple_menu_letter_spacing_after_dark', '3px', 'yes'),
(408, 'maple_menu_add_border_after_dark', 'off', 'yes'),
(409, 'maple_menu_border_color_after_dark', '000000', 'yes'),
(410, 'maple_menu_side_margin_after_dark', '20px', 'yes'),
(411, 'maple_menu_margin_top_after_dark', '15px', 'yes'),
(412, 'maple_menu_padding_bottom_after_dark', '15px', 'yes'),
(413, 'maple_sub_menu_font', 'Helvetica Neue', 'yes'),
(414, 'maple_sub_menu_color', '333333', 'yes'),
(415, 'maple_sub_menu_color_hover', '__USE_THEME_MAIN_COLOR__', 'yes'),
(416, 'maple_sub_menu_font_size', '13 px', 'yes'),
(417, 'maple_sub_menu_uppercase', 'off', 'yes'),
(418, 'maple_sub_menu_letter_spacing', '0px', 'yes'),
(419, 'maple_sub_menu_bg_color', 'ffffff', 'yes'),
(420, 'maple_sub_menu_bg_opacity', '100%', 'yes'),
(421, 'maple_sub_menu_bg_color_hover', '101010', 'yes'),
(422, 'maple_sub_menu_border_color', 'ededed', 'yes'),
(423, 'maple_label_menu_font', 'Helvetica Neue', 'yes'),
(424, 'maple_label_menu_color', '333333', 'yes'),
(425, 'maple_label_menu_font_size', '11 px', 'yes'),
(426, 'maple_label_menu_uppercase', 'on', 'yes'),
(427, 'maple_label_menu_letter_spacing', '3px', 'yes'),
(428, 'maple_sliding_panel_background_color', '1a1a1a', 'yes'),
(429, 'maple_sliding_panel_titles_font', 'Helvetica Neue', 'yes'),
(430, 'maple_sliding_panel_titles_color', 'ffffff', 'yes'),
(431, 'maple_sliding_panel_titles_font_size', '16px', 'yes'),
(432, 'maple_sliding_panel_links_font', 'Helvetica Neue', 'yes'),
(433, 'maple_sliding_panel_links_color', 'afafaf', 'yes'),
(434, 'maple_sliding_panel_links_font_size', '13 px', 'yes'),
(435, 'maple_sliding_panel_p_font', 'Helvetica Neue', 'yes'),
(436, 'maple_sliding_panel_p_color', 'afafaf', 'yes'),
(437, 'maple_sliding_panel_p_font_size', '13 px', 'yes'),
(438, 'maple_search_open_effect', 'fade', 'yes'),
(439, 'maple_search_input_background_color', 'ffffff', 'yes'),
(440, 'maple_search_input_background_opacity', '98', 'yes'),
(441, 'maple_search_input_font', 'Helvetica Neue', 'yes'),
(442, 'maple_search_input_font_size', '46 px', 'yes'),
(443, 'maple_search_input_font_color', '101010', 'yes'),
(444, 'maple_search_result_background_color', 'ffffff', 'yes'),
(445, 'maple_search_selected_result_background_color', 'f2f2f2', 'yes'),
(446, 'maple_search_result_background_opacity', '98', 'yes'),
(447, 'maple_search_result_borders', 'dedede', 'yes'),
(448, 'maple_search_result_font', 'Helvetica Neue', 'yes'),
(449, 'maple_search_result_font_size', '14px', 'yes'),
(450, 'maple_search_result_font_color', '696969', 'yes'),
(451, 'maple_search_selected_result_font_color', '3d3d3d', 'yes'),
(452, 'maple_search_result_details_font', 'Helvetica Neue', 'yes'),
(453, 'maple_search_result_details_font_size', '12px', 'yes'),
(454, 'maple_search_result_details_font_color', 'c2c2c2', 'yes'),
(455, 'maple_search_selected_result_details_font_color', 'c2c2c2', 'yes'),
(456, 'maple_header_type', 'color', 'yes'),
(457, 'maple_header_image', 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/karen-kayser-rdtkE1fHi6c-unsplash-scaled.jpg', 'yes'),
(458, 'maple_pagetitle_image_parallax', 'off', 'yes'),
(459, 'maple_pagetitle_image_overlay', 'off', 'yes'),
(460, 'maple_pagetitle_overlay_type', 'color', 'yes'),
(461, 'maple_pagetitle_overlay_color', '333', 'yes'),
(462, 'maple_pagetitle_overlay_opacity', '100', 'yes'),
(463, 'maple_header_color', '000000', 'yes'),
(464, 'maple_header_opacity', '100', 'yes'),
(465, 'maple_header_pattern', 'pattern8.jpg', 'yes'),
(466, 'maple_page_title_padding', '140px', 'yes'),
(467, 'maple_header_text_alignment', 'center', 'yes'),
(468, 'maple_hide_pagetitle', 'on', 'yes'),
(469, 'maple_header_text_font', 'Helvetica Neue', 'yes'),
(470, 'maple_header_text_color', 'f0f0f0', 'yes'),
(471, 'maple_header_text_size', '42 px', 'yes'),
(472, 'maple_header_text_margin_top', '40px', 'yes'),
(473, 'maple_hide_sec_pagetitle', 'on', 'yes'),
(474, 'maple_secondary_title_font', 'Helvetica Neue', 'yes'),
(475, 'maple_secondary_title_text_color', '949494', 'yes'),
(476, 'maple_secondary_title_text_size', '19px', 'yes'),
(477, 'maple_header_sec_text_margin_top', '15px', 'yes'),
(478, 'maple_breadcrumbs', 'on', 'yes'),
(479, 'maple_breadcrumbs_font', 'Helvetica Neue', 'yes'),
(480, 'maple_breadcrumbs_color', 'f0f0f0', 'yes'),
(481, 'maple_breadcrumbs_size', '11px', 'yes'),
(482, 'maple_breadcrumbs_text_margin_top', '30px', 'yes'),
(483, 'maple_header_type_shop', 'image', 'yes'),
(484, 'maple_header_image_shop', 'http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/0244.jpg', 'yes'),
(485, 'maple_pagetitle_image_parallax_shop', 'on', 'yes'),
(486, 'maple_pagetitle_image_overlay_shop', 'on', 'yes'),
(487, 'maple_pagetitle_overlay_type_shop', 'color', 'yes'),
(488, 'maple_pagetitle_overlay_color_shop', '1a1a1a', 'yes'),
(489, 'maple_pagetitle_overlay_opacity_shop', '55%', 'yes'),
(490, 'maple_header_color_shop', '212121', 'yes'),
(491, 'maple_header_opacity_shop', '100', 'yes'),
(492, 'maple_page_title_padding_shop', '150px', 'yes'),
(493, 'maple_header_text_alignment_shop', 'left', 'yes'),
(494, 'maple_hide_pagetitle_shop', 'on', 'yes'),
(495, 'maple_header_text_font_shop', 'Helvetica Neue', 'yes'),
(496, 'maple_header_text_color_shop', 'f0f0f0', 'yes'),
(497, 'maple_header_text_size_shop', '50px', 'yes'),
(498, 'maple_header_text_margin_top_shop', '60px', 'yes'),
(499, 'maple_hide_sec_pagetitle_shop', 'on', 'yes'),
(500, 'maple_secondary_title_font_shop', 'Helvetica Neue', 'yes'),
(501, 'maple_secondary_title_text_color_shop', '949494', 'yes'),
(502, 'maple_secondary_title_text_size_shop', '19px', 'yes'),
(503, 'maple_header_sec_text_margin_top_shop', '5px', 'yes'),
(504, 'maple_breadcrumbs_shop', 'on', 'yes'),
(505, 'maple_breadcrumbs_font_shop', 'Helvetica Neue', 'yes'),
(506, 'maple_breadcrumbs_color_shop', '999999', 'yes'),
(507, 'maple_breadcrumbs_size_shop', '11px', 'yes'),
(508, 'maple_breadcrumbs_text_margin_top_shop', '20px', 'yes'),
(509, 'maple_show_primary_footer', 'off', 'yes'),
(510, 'maple_footerbg_type', 'color', 'yes'),
(511, 'maple_footerbg_color', '191919', 'yes'),
(512, 'maple_footerbg_color_opacity', '100', 'yes'),
(513, 'maple_footerbg_borderscolor', '191919', 'yes'),
(514, 'maple_primary_footer_padding_top', '80px', 'yes'),
(515, 'maple_primary_footer_padding_bottom', '80px', 'yes'),
(516, 'maple_footerbg_linkscolor', 'ACACAD', 'yes'),
(517, 'maple_footerbg_paragraphscolor', 'ACACAD', 'yes'),
(518, 'maple_footerbg_headingscolor', 'ffffff', 'yes'),
(519, 'maple_show_sec_footer', 'off', 'yes'),
(520, 'maple_sec_footerbg_type', 'image', 'yes'),
(521, 'maple_sec_footerbg_color', 'f5f5f5', 'yes'),
(522, 'maple_sec_footerbg_color_opacity', '100', 'yes'),
(523, 'maple_secondary_footer_padding_top', '80px', 'yes'),
(524, 'maple_secondary_footer_padding_bottom', '80px', 'yes'),
(525, 'maple_sec_footer_social_icons_size', '16px', 'yes'),
(526, 'maple_sec_footer_social_icons_color', '333333', 'yes'),
(527, 'maple_sec_footer_social_icons_hover_color', 'd8d8d8', 'yes'),
(528, 'maple_links_font', 'Helvetica', 'yes'),
(529, 'maple_links_size', '14 px', 'yes'),
(530, 'maple_links_color', '595959', 'yes'),
(531, 'maple_links_color_hover', '__USE_THEME_MAIN_COLOR__', 'yes'),
(532, 'maple_p_font', 'Helvetica', 'yes'),
(533, 'maple_p_size', '14 px', 'yes'),
(534, 'maple_p_color', '595959', 'yes'),
(535, 'maple_h1_font', 'Helvetica Neue', 'yes'),
(536, 'maple_h1_size', '40 px', 'yes'),
(537, 'maple_h1_color', '303030', 'yes'),
(538, 'maple_h2_font', 'Helvetica Neue', 'yes'),
(539, 'maple_h2_size', '32px', 'yes'),
(540, 'maple_h2_color', '303030', 'yes'),
(541, 'maple_h3_font', 'Helvetica Neue', 'yes'),
(542, 'maple_h3_size', '25px', 'yes'),
(543, 'maple_h3_color', '303030', 'yes'),
(544, 'maple_h4_font', 'Helvetica Neue', 'yes'),
(545, 'maple_h4_size', '22px', 'yes'),
(546, 'maple_h4_color', '303030', 'yes'),
(547, 'maple_h5_font', 'Helvetica Neue', 'yes'),
(548, 'maple_h5_size', '18px', 'yes'),
(549, 'maple_h5_color', '303030', 'yes'),
(550, 'maple_h6_font', 'Helvetica Neue', 'yes'),
(551, 'maple_h6_size', '12 px', 'yes'),
(552, 'maple_h6_color', '303030', 'yes'),
(553, 'recently_activated', 'a:0:{}', 'yes'),
(560, 'maple_first_save', 'true', 'yes'),
(561, 'maple_index_primary_title', '', 'yes'),
(562, 'maple_index_secondary_title', '', 'yes'),
(563, 'maple_archive_secondary_title', '', 'yes'),
(564, 'maple_blog_archive_sidebars_available', 'defaultblogsidebar', 'yes'),
(565, 'maple_blog_secondary_title', '', 'yes'),
(566, 'maple_sidebars_available', 'defaultblogsidebar', 'yes'),
(567, 'maple_shop_secondary_title', '', 'yes'),
(568, 'maple_woo_sidebar', 'defaultblogsidebar', 'yes'),
(569, 'maple_search_secondary_title', '', 'yes'),
(570, 'maple_search_sidebars_available', 'defaultblogsidebar', 'yes'),
(571, 'maple_sidebar_name_names', '', 'yes'),
(572, 'maple_custom_css', '', 'yes'),
(573, 'maple_import_options', '', 'yes'),
(583, 'envato_market', 'a:2:{s:16:\"is_plugin_active\";s:1:\"1\";s:17:\"installed_version\";s:5:\"2.0.5\";}', 'yes'),
(584, 'revslider_servers', 'a:7:{i:0;s:22:\"themepunch-ext-b.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:16:\"themepunch.tools\";i:3;s:22:\"themepunch-ext-a.tools\";i:4;s:22:\"themepunch-ext-a.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-b.tools\";}', 'yes'),
(585, 'revslider_server_refresh', '1604979882', 'yes'),
(586, 'revslider-update-check-short', '1605931323', 'yes'),
(587, 'revslider-connection', '1', 'yes'),
(588, 'revslider-update-hash', '14d15c27bf54bca27cf667d07110d2af', 'yes'),
(589, 'revslider-latest-version', '6.3.0', 'yes'),
(590, 'revslider-stable-version', '4.2', 'yes'),
(591, 'revslider-notices', 'a:1:{i:0;O:8:\"stdClass\":8:{s:7:\"version\";s:5:\"6.2.9\";s:4:\"text\";s:313:\"<div style=\"display: block; background-color: #1C0950; text-align: center;\"><a href=\"//mailchi.mp/sliderrevolution/slider-revolution-update-63\" target=\"_blank\"><img alt=\"Important Notice\" src=\"//updates.themepunch-ext-b.tools/banners/sradmin63.jpg\" width=\"960\" height=\"250\" style=\"margin-bottom: -5px;\"></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:{}}}', 'yes'),
(592, 'revslider-additions', 'O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}', 'yes'),
(593, 'rs-addons-counter', '2', 'yes'),
(594, 'revslider-addons', 'O:8:\"stdClass\":30:{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.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-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.3.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: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.2.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s: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.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-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.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"2.0.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_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}}', 'yes'),
(595, 'revslider-library-check', '1605069718', 'yes'),
(596, 'revslider-library-hash', '182cddf4eb7341b26304629033cbbb48', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(597, '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');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(598, 'revslider-templates-check', '1605745864', 'yes'),
(599, 'revslider-templates-hash', '7412ab94b0bb59721919fd0eecfdda95', 'yes'),
(600, 'rs-templates-new', '', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(601, '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:478:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}}}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(602, 'rs-templates-counter', '0', 'no'),
(603, 'revslider_table_version', '1.0.8', 'yes'),
(604, 'bsf_force_check_extensions', '', 'no'),
(607, 'wpcf7', 'a:2:{s:7:\"version\";s:3:\"5.3\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1604979892;s:7:\"version\";s:3:\"5.3\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}', 'yes'),
(608, 'action_scheduler_hybrid_store_demarkation', '9', 'yes'),
(609, 'schema-ActionScheduler_StoreSchema', '3.0.1604979893', 'yes'),
(610, 'schema-ActionScheduler_LoggerSchema', '2.0.1604979893', 'yes'),
(613, 'woocommerce_schema_version', '430', 'yes'),
(614, 'woocommerce_store_address', '', 'yes'),
(615, 'woocommerce_store_address_2', '', 'yes'),
(616, 'woocommerce_store_city', '', 'yes'),
(617, 'woocommerce_default_country', 'GB', 'yes'),
(618, 'woocommerce_store_postcode', '', 'yes'),
(619, 'woocommerce_allowed_countries', 'all', 'yes'),
(620, 'woocommerce_all_except_countries', '', 'yes'),
(621, 'woocommerce_specific_allowed_countries', '', 'yes'),
(622, 'woocommerce_ship_to_countries', '', 'yes'),
(623, 'woocommerce_specific_ship_to_countries', '', 'yes'),
(624, 'woocommerce_default_customer_address', 'base', 'yes'),
(625, 'woocommerce_calc_taxes', 'no', 'yes'),
(626, 'woocommerce_enable_coupons', 'yes', 'yes'),
(627, 'woocommerce_calc_discounts_sequentially', 'no', 'no'),
(628, 'woocommerce_currency', 'GBP', 'yes'),
(629, 'woocommerce_currency_pos', 'left', 'yes'),
(630, 'woocommerce_price_thousand_sep', ',', 'yes'),
(631, 'woocommerce_price_decimal_sep', '.', 'yes'),
(632, 'woocommerce_price_num_decimals', '2', 'yes'),
(633, 'woocommerce_shop_page_id', '10', 'yes'),
(634, 'woocommerce_cart_redirect_after_add', 'no', 'yes'),
(635, 'woocommerce_enable_ajax_add_to_cart', 'yes', 'yes'),
(636, 'woocommerce_placeholder_image', '9', 'yes'),
(637, 'woocommerce_weight_unit', 'kg', 'yes'),
(638, 'woocommerce_dimension_unit', 'cm', 'yes'),
(639, 'woocommerce_enable_reviews', 'yes', 'yes'),
(640, 'woocommerce_review_rating_verification_label', 'yes', 'no'),
(641, 'woocommerce_review_rating_verification_required', 'no', 'no'),
(642, 'woocommerce_enable_review_rating', 'yes', 'yes'),
(643, 'woocommerce_review_rating_required', 'yes', 'no'),
(644, 'woocommerce_manage_stock', 'yes', 'yes'),
(645, 'woocommerce_hold_stock_minutes', '60', 'no'),
(646, 'woocommerce_notify_low_stock', 'yes', 'no'),
(647, 'woocommerce_notify_no_stock', 'yes', 'no'),
(648, 'woocommerce_stock_email_recipient', 'drcolinrusso@gmail.com', 'no'),
(649, 'woocommerce_notify_low_stock_amount', '2', 'no'),
(650, 'woocommerce_notify_no_stock_amount', '0', 'yes'),
(651, 'woocommerce_hide_out_of_stock_items', 'no', 'yes'),
(652, 'woocommerce_stock_format', '', 'yes'),
(653, 'woocommerce_file_download_method', 'force', 'no'),
(654, 'woocommerce_downloads_require_login', 'no', 'no'),
(655, 'woocommerce_downloads_grant_access_after_payment', 'yes', 'no'),
(656, 'woocommerce_downloads_add_hash_to_filename', 'yes', 'yes'),
(657, 'woocommerce_prices_include_tax', 'no', 'yes'),
(658, 'woocommerce_tax_based_on', 'shipping', 'yes'),
(659, 'woocommerce_shipping_tax_class', 'inherit', 'yes'),
(660, 'woocommerce_tax_round_at_subtotal', 'no', 'yes'),
(661, 'woocommerce_tax_classes', '', 'yes'),
(662, 'woocommerce_tax_display_shop', 'excl', 'yes'),
(663, 'woocommerce_tax_display_cart', 'excl', 'yes'),
(664, 'woocommerce_price_display_suffix', '', 'yes'),
(665, 'woocommerce_tax_total_display', 'itemized', 'no'),
(666, 'woocommerce_enable_shipping_calc', 'yes', 'no'),
(667, 'woocommerce_shipping_cost_requires_address', 'no', 'yes'),
(668, 'woocommerce_ship_to_destination', 'billing', 'no'),
(669, 'woocommerce_shipping_debug_mode', 'no', 'yes'),
(670, 'woocommerce_enable_guest_checkout', 'yes', 'no'),
(671, 'woocommerce_enable_checkout_login_reminder', 'no', 'no'),
(672, 'woocommerce_enable_signup_and_login_from_checkout', 'no', 'no'),
(673, 'woocommerce_enable_myaccount_registration', 'no', 'no'),
(674, 'woocommerce_registration_generate_username', 'yes', 'no'),
(675, 'woocommerce_registration_generate_password', 'yes', 'no'),
(676, 'woocommerce_erasure_request_removes_order_data', 'no', 'no'),
(677, 'woocommerce_erasure_request_removes_download_data', 'no', 'no'),
(678, 'woocommerce_allow_bulk_remove_personal_data', 'no', 'no'),
(679, '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'),
(680, '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'),
(681, 'woocommerce_delete_inactive_accounts', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(682, 'woocommerce_trash_pending_orders', '', 'no'),
(683, 'woocommerce_trash_failed_orders', '', 'no'),
(684, 'woocommerce_trash_cancelled_orders', '', 'no'),
(685, 'woocommerce_anonymize_completed_orders', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(686, 'woocommerce_email_from_name', 'Engaging Futures 2020', 'no'),
(687, 'woocommerce_email_from_address', 'drcolinrusso@gmail.com', 'no'),
(688, 'woocommerce_email_header_image', '', 'no'),
(689, 'woocommerce_email_footer_text', '{site_title} &mdash; Built with {WooCommerce}', 'no'),
(690, 'woocommerce_email_base_color', '#96588a', 'no'),
(691, 'woocommerce_email_background_color', '#f7f7f7', 'no'),
(692, 'woocommerce_email_body_background_color', '#ffffff', 'no'),
(693, 'woocommerce_email_text_color', '#3c3c3c', 'no'),
(694, 'woocommerce_cart_page_id', '11', 'no'),
(695, 'woocommerce_checkout_page_id', '12', 'no'),
(696, 'woocommerce_myaccount_page_id', '13', 'no'),
(697, 'woocommerce_terms_page_id', '', 'no'),
(698, 'woocommerce_force_ssl_checkout', 'no', 'yes'),
(699, 'woocommerce_unforce_ssl_checkout', 'no', 'yes'),
(700, 'woocommerce_checkout_pay_endpoint', 'order-pay', 'yes'),
(701, 'woocommerce_checkout_order_received_endpoint', 'order-received', 'yes'),
(702, 'woocommerce_myaccount_add_payment_method_endpoint', 'add-payment-method', 'yes'),
(703, 'woocommerce_myaccount_delete_payment_method_endpoint', 'delete-payment-method', 'yes'),
(704, 'woocommerce_myaccount_set_default_payment_method_endpoint', 'set-default-payment-method', 'yes'),
(705, 'woocommerce_myaccount_orders_endpoint', 'orders', 'yes'),
(706, 'woocommerce_myaccount_view_order_endpoint', 'view-order', 'yes'),
(707, 'woocommerce_myaccount_downloads_endpoint', 'downloads', 'yes'),
(708, 'woocommerce_myaccount_edit_account_endpoint', 'edit-account', 'yes'),
(709, 'woocommerce_myaccount_edit_address_endpoint', 'edit-address', 'yes'),
(710, 'woocommerce_myaccount_payment_methods_endpoint', 'payment-methods', 'yes'),
(711, 'woocommerce_myaccount_lost_password_endpoint', 'lost-password', 'yes'),
(712, 'woocommerce_logout_endpoint', 'customer-logout', 'yes'),
(713, 'woocommerce_api_enabled', 'no', 'yes'),
(714, 'woocommerce_allow_tracking', 'no', 'no'),
(715, 'woocommerce_show_marketplace_suggestions', 'yes', 'no'),
(716, 'woocommerce_single_image_width', '600', 'yes'),
(717, 'woocommerce_thumbnail_image_width', '300', 'yes'),
(718, 'woocommerce_checkout_highlight_required_fields', 'yes', 'yes'),
(719, 'woocommerce_demo_store', 'no', 'no'),
(720, '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'),
(721, 'current_theme_supports_woocommerce', 'yes', 'yes'),
(722, 'woocommerce_queue_flush_rewrite_rules', 'no', 'yes'),
(723, '_transient_wc_attribute_taxonomies', 'a:0:{}', 'yes'),
(724, 'product_cat_children', 'a:0:{}', 'yes'),
(725, 'default_product_cat', '15', 'yes'),
(728, 'woocommerce_version', '4.6.2', 'yes'),
(729, 'woocommerce_db_version', '4.6.2', 'yes'),
(732, 'action_scheduler_lock_async-request-runner', '1606029814', 'yes'),
(733, 'woocommerce_admin_notices', 'a:1:{i:0;s:20:\"no_secure_connection\";}', 'yes'),
(734, 'ultimate_row', 'enable', 'yes'),
(735, 'ultimate_animation', 'disable', 'yes'),
(736, 'revslider_update_version', '6.2.0', 'yes'),
(737, 'ultimate_google_fonts', 'a:0:{}', 'yes'),
(738, 'woocommerce_maxmind_geolocation_settings', 'a:1:{s:15:\"database_prefix\";s:32:\"PSOKs7IJx0VbridLJVB7quApN4O4p5la\";}', 'yes'),
(739, '_transient_woocommerce_webhook_ids_status_active', 'a:0:{}', 'yes'),
(740, 'widget_meks_instagram', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(741, 'widget_rev-slider-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(742, 'widget_woocommerce_widget_cart', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(743, 'widget_woocommerce_layered_nav_filters', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(744, 'widget_woocommerce_layered_nav', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(745, 'widget_woocommerce_price_filter', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(746, 'widget_woocommerce_product_categories', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(747, 'widget_woocommerce_product_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(748, 'widget_woocommerce_product_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(749, 'widget_woocommerce_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(750, 'widget_woocommerce_recently_viewed_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(751, 'widget_woocommerce_top_rated_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(752, 'widget_woocommerce_recent_reviews', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(753, 'widget_woocommerce_rating_filter', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(756, 'woocommerce_admin_version', '1.6.2', 'yes'),
(757, 'woocommerce_admin_install_timestamp', '1604979913', 'yes'),
(761, 'wc_admin_note_home_screen_feedback_homescreen_accessed', '1604979914', 'yes'),
(762, 'wpb_js_content_types', 'a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:9:\"portfolio\";}', 'yes'),
(763, 'vc_version', '6.4.1', 'yes'),
(765, 'cubeportfolio_version', '3.8.0', 'yes'),
(767, 'envato_market_state', 'activated', 'yes'),
(768, '_transient_wc_count_comments', 'O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}', 'yes'),
(769, 'bsf-updater-version', '1.27.10', 'yes'),
(770, 'brainstrom_products', 'a:1:{s:7:\"plugins\";a:1:{i:6892199;a:16:{s:8:\"template\";s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:7:\"6892199\";s:12:\"product_name\";s:41:\"Ultimate Addons for WPBakery Page Builder\";s:7:\"version\";s:6:\"3.19.6\";s:6:\"remote\";s:6:\"3.19.7\";s:8:\"in_house\";s:4:\"true\";s:9:\"on_market\";s:4:\"true\";s:15:\"is_product_free\";s:5:\"false\";s:10:\"short_name\";s:0:\"\";s:13:\"changelog_url\";s:46:\"http://changelog.brainstormforce.com/ultimate/\";s:12:\"purchase_url\";s:74:\"https://codecanyon.net/cart/add_items?item_ids=6892199&ref=BrainstormForce\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:12:\"download_url\";s:22:\"Ultimate_VC_Addons.zip\";s:6:\"tested\";s:5:\"5.5.3\";}}}', 'yes'),
(772, 'wc_remote_inbox_notifications_specs', 'a:5:{s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:255:\"WooCommerce Shipping & Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:274:\"Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:54:\"Manage subscriber payments from your store\'s dashboard\";s:7:\"content\";s:856:\"<a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_exp20\" target=\"_blank\">WooCommerce Payments</a> now supports <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_exp20\" target=\"_blank\">WooCommerce Subscriptions</a>. <strong>Get 50% off transaction fees</strong> and make the most out of your holiday sales by adding WooCommerce Payments to your store. Limited-time offer. <br/><br/><em>By clicking \"Install now,\" you agree to our general <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> and promotional <a href=\"https://woocommerce.com/terms-conditions/woocommerce-payments-promotion/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_exp20\" target=\"_blank\">Terms of Service</a>.</em>\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"install-now\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Install now\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:17:\"woocommerce-admin\";}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"1.7.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:2:{i:0;s:20:\"woocommerce-payments\";i:1;s:26:\"woocommerce-gateway-stripe\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:8:\"industry\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";}}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:10;}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2020-11-18 14:00:00\";}i:6;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2020-11-27 00:00:00\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:8;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:26:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CO\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"DE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"FL\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"HI\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"ID\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IN\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"KS\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"KY\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"LA\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"MA\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"MN\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"MT\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NE\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NV\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NH\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NM\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"ND\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"OH\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"OR\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"PA\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"SD\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"TN\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"TX\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"VA\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"WA\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"WI\";}}}}}s:27:\"wcpay-subscriptions-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"wcpay-subscriptions-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:54:\"Manage subscriber payments from your store\'s dashboard\";s:7:\"content\";s:643:\"Securely accept cards and manage transactions right from your dashboard with <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Payments</a>  – now supporting <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Subscriptions</a>! <br/><br/><em>By clicking \"Install now,\" you agree to our <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_ctrl20\" target=\"_blank\">Terms of Service</a>.</em>\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"install-now\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Install now\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:17:\"woocommerce-admin\";}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"1.7.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:2:{i:0;s:20:\"woocommerce-payments\";i:1;s:26:\"woocommerce-gateway-stripe\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:8:\"industry\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";}}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:10;}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2020-11-18 14:00:00\";}i:6;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2020-11-27 00:00:00\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:8;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:24:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AL\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AK\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AZ\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AR\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CT\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"DC\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IL\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IA\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"ME\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"MD\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"MI\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"MS\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"MO\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NJ\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NY\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NC\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"OK\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"RI\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"SC\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"UT\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"VT\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"WV\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:19:\"base_location_state\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"WY\";}}}}}}', 'yes'),
(773, 'wc_remote_inbox_notifications_stored_state', 'O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:0;}', 'yes'),
(774, 'brainstrom_bundled_products', 'a:0:{}', 'yes'),
(776, 'ultimate_updater', 'enabled', 'yes'),
(777, 'ultimate_constants', 'a:3:{s:24:\"ULTIMATE_NO_UPDATE_CHECK\";b:0;s:28:\"ULTIMATE_NO_EDIT_PAGE_NOTICE\";b:0;s:30:\"ULTIMATE_NO_PLUGIN_PAGE_NOTICE\";b:0;}', 'yes'),
(778, 'ultimate_modules', 'a:44:{i:0;s:18:\"ultimate_animation\";i:1;s:16:\"ultimate_buttons\";i:2;s:18:\"ultimate_countdown\";i:3;s:17:\"ultimate_flip_box\";i:4;s:20:\"ultimate_google_maps\";i:5;s:22:\"ultimate_google_trends\";i:6;s:17:\"ultimate_headings\";i:7;s:22:\"ultimate_icon_timeline\";i:8;s:17:\"ultimate_info_box\";i:9;s:20:\"ultimate_info_circle\";i:10;s:18:\"ultimate_info_list\";i:11;s:20:\"ultimate_info_tables\";i:12;s:28:\"ultimate_interactive_banners\";i:13;s:29:\"ultimate_interactive_banner_2\";i:14;s:15:\"ultimate_modals\";i:15;s:17:\"ultimate_parallax\";i:16;s:23:\"ultimate_pricing_tables\";i:17;s:15:\"ultimate_spacer\";i:18;s:22:\"ultimate_stats_counter\";i:19;s:20:\"ultimate_swatch_book\";i:20;s:14:\"ultimate_icons\";i:21;s:18:\"ultimate_list_icon\";i:22;s:17:\"ultimate_carousel\";i:23;s:18:\"ultimate_fancytext\";i:24;s:22:\"ultimate_highlight_box\";i:25;s:20:\"ultimate_info_banner\";i:26;s:15:\"ultimate_ihover\";i:27;s:16:\"ultimate_hotspot\";i:28;s:21:\"ultimate_video_banner\";i:29;s:11:\"woocomposer\";i:30;s:20:\"ultimate_dual_button\";i:31;s:13:\"ultimate_link\";i:32;s:19:\"ultimate_fancy_text\";i:33;s:23:\"ultimate_hightlight_box\";i:34;s:20:\"ultimate_content_box\";i:35;s:24:\"ultimate_image_separator\";i:36;s:27:\"ultimate_expandable_section\";i:37;s:12:\"ultimate_tab\";i:38;s:23:\"ultimate_sticky_section\";i:39;s:13:\"ultimate_team\";i:40;s:21:\"ultimate_range_slider\";i:41;s:15:\"ultimate_videos\";i:42;s:16:\"ultimate_ribbons\";i:43;s:20:\"ultimate_dual_colors\";}', 'yes'),
(779, 'wc_blocks_db_schema_version', '260', 'yes'),
(780, 'smile_fonts', 'a:4:{s:8:\"Defaults\";a:4:{s:7:\"include\";s:20:\"smile_fonts/Defaults\";s:6:\"folder\";s:20:\"smile_fonts/Defaults\";s:5:\"style\";s:21:\"Defaults/Defaults.css\";s:6:\"config\";s:11:\"charmap.php\";}s:11:\"linearicons\";a:4:{s:7:\"include\";s:23:\"smile_fonts/linearicons\";s:6:\"folder\";s:23:\"smile_fonts/linearicons\";s:5:\"style\";s:27:\"linearicons/linearicons.css\";s:6:\"config\";s:11:\"charmap.php\";}s:12:\"Ultimate-set\";a:4:{s:7:\"include\";s:24:\"smile_fonts/Ultimate-set\";s:6:\"folder\";s:24:\"smile_fonts/Ultimate-set\";s:5:\"style\";s:29:\"Ultimate-set/Ultimate-set.css\";s:6:\"config\";s:11:\"charmap.php\";}s:20:\"WebHostingHub-Glyphs\";a:4:{s:7:\"include\";s:32:\"smile_fonts/WebHostingHub-Glyphs\";s:6:\"folder\";s:32:\"smile_fonts/WebHostingHub-Glyphs\";s:5:\"style\";s:45:\"WebHostingHub-Glyphs/WebHostingHub-Glyphs.css\";s:6:\"config\";s:11:\"charmap.php\";}}', 'yes'),
(783, 'woocommerce_meta_box_errors', 'a:0:{}', 'yes'),
(792, '_transient_woocommerce_reports-transient-version', '1605669739', 'yes'),
(808, 'woocommerce_onboarding_profile', 'a:2:{s:7:\"skipped\";b:1;s:9:\"completed\";b:1;}', 'yes'),
(809, 'woocommerce_task_list_welcome_modal_dismissed', 'yes', 'yes'),
(814, 'action_scheduler_migration_status', 'complete', 'yes'),
(819, 'woocommerce_maybe_regenerate_images_hash', '991b1ca641921cf0f5baf7a2fe85861b', 'yes'),
(825, 'bsf_last_update_check', '1606059155', 'yes'),
(832, 'revslider_update_revision_current', '6.2.0', 'yes'),
(849, 'maple_sliding_panel_links_color_hover', 'ffffff', 'yes'),
(851, '_transient_timeout_wc_low_stock_count', '1607572840', 'no'),
(852, '_transient_wc_low_stock_count', '0', 'no'),
(853, '_transient_timeout_wc_outofstock_count', '1607572840', 'no'),
(854, '_transient_wc_outofstock_count', '0', 'no'),
(871, '_transient_timeout_wc_term_counts', '1607573226', 'no'),
(872, '_transient_wc_term_counts', 'a:1:{i:15;s:0:\"\";}', 'no'),
(909, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes'),
(914, '_transient_product_query-transient-version', '1605597633', 'yes'),
(918, '_transient_shipping-transient-version', '1604983790', 'yes'),
(919, '_transient_timeout_wc_shipping_method_count_legacy', '1607575790', 'no'),
(920, '_transient_wc_shipping_method_count_legacy', 'a:2:{s:7:\"version\";s:10:\"1604983790\";s:5:\"value\";i:0;}', 'no'),
(994, 'revslider-notices-dc', 'a:1:{i:0;s:10:\"TPRS999-01\";}', 'yes'),
(1057, 'maple_style_defcolor', '', 'yes'),
(1058, 'maple_bodybg_type_image', '', 'yes'),
(1059, 'maple_headerbg_image_light', '', 'yes'),
(1060, 'maple_headerbg_pattern_light', '', 'yes'),
(1061, 'maple_headerbg_custom_pattern_light', '', 'yes'),
(1062, 'maple_headerbg_after_scroll_image_light', '', 'yes'),
(1063, 'maple_headerbg_after_scroll_pattern_light', '', 'yes'),
(1064, 'maple_headerbg_after_scroll_custom_pattern_light', '', 'yes'),
(1065, 'maple_headerbg_image_dark', '', 'yes'),
(1066, 'maple_headerbg_pattern_dark', 'pattern5.jpg', 'yes'),
(1067, 'maple_headerbg_custom_pattern_dark', '', 'yes'),
(1068, 'maple_headerbg_after_scroll_image_dark', '', 'yes'),
(1069, 'maple_headerbg_after_scroll_pattern_dark', '', 'yes'),
(1070, 'maple_headerbg_after_scroll_custom_pattern_dark', '', 'yes'),
(1071, 'maple_pagetitle_overlay_pattern', '', 'yes'),
(1072, 'maple_header_custom_pattern', '', 'yes'),
(1073, 'maple_banner_slider', '-1', 'yes'),
(1074, 'maple_pagetitle_overlay_pattern_shop', '', 'yes'),
(1075, 'maple_header_pattern_shop', '', 'yes'),
(1076, 'maple_header_custom_pattern_shop', '', 'yes'),
(1077, 'maple_banner_slider_shop', '-1', 'yes'),
(1078, 'maple_footerbg_image', '', 'yes'),
(1079, 'maple_footerbg_pattern', '', 'yes'),
(1080, 'maple_footerbg_custom_pattern', '', 'yes'),
(1081, 'maple_sec_footerbg_image', 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/quentin-grignet-sz8iZG7ZDUM-unsplash-scaled.jpg', 'yes'),
(1082, 'maple_sec_footerbg_pattern', '', 'yes'),
(1083, 'maple_sec_footerbg_custom_pattern', '', 'yes'),
(1084, 'maple_links_bg_color_hover', '', 'yes'),
(1085, 'maple_import_style_options', '', 'yes'),
(1197, 'WPLANG', 'en_AU', 'yes'),
(1198, 'new_admin_email', 'drcolinrusso@gmail.com', 'yes'),
(1341, 'woocommerce_task_list_tracked_completed_tasks', 'a:1:{i:0;s:13:\"store_details\";}', 'yes'),
(1399, 'rs_image_meta_todo', 'a:7:{i:445;s:73:\"/Applications/MAMP/htdocs/wordpress/wp-content/uploads/revslider/art3.jpg\";i:446;s:73:\"/Applications/MAMP/htdocs/wordpress/wp-content/uploads/revslider/art4.jpg\";i:447;s:73:\"/Applications/MAMP/htdocs/wordpress/wp-content/uploads/revslider/art5.jpg\";i:448;s:73:\"/Applications/MAMP/htdocs/wordpress/wp-content/uploads/revslider/art8.jpg\";i:449;s:82:\"/Applications/MAMP/htdocs/wordpress/wp-content/uploads/revslider/sunshinecover.jpg\";i:450;s:76:\"/Applications/MAMP/htdocs/wordpress/wp-content/uploads/revslider/sunrise.mp4\";i:451;s:73:\"/Applications/MAMP/htdocs/wordpress/wp-content/uploads/revslider/art7.jpg\";}', 'yes'),
(1896, 'revslider-valid', 'true', 'yes'),
(1897, 'revslider-code', 'a61706-33c2e0-c29d5f-ffcceb-d75833', 'yes'),
(1925, 'revslider-update-check', '1605256752', 'yes'),
(1926, 'revslider_update_info', 'O:8:\"stdClass\":3:{s:7:\"checked\";i:1605256752;s:5:\"basic\";O:8:\"stdClass\":6:{s:4:\"slug\";s:9:\"revslider\";s:7:\"version\";s:6:\"6.2.23\";s:7:\"package\";s:100:\"http://updates.themepunch-ext-b.tools/revslider/download.php?code=a61706-33c2e0-c29d5f-ffcceb-d75833\";s:6:\"tested\";s:5:\"5.5.1\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"//updates.themepunch-ext-b.tools/revslider/logo.png?rev=6.2.23\";}s:3:\"url\";s:60:\"https://www.themepunch.com/links/slider_revolution_wordpress\";}s:4:\"full\";O:8:\"stdClass\":19:{s:7:\"banners\";a:2:{s:3:\"low\";s:64:\"//updates.themepunch-ext-b.tools/revslider/banner.png?rev=6.2.23\";s:4:\"high\";s:64:\"//updates.themepunch-ext-b.tools/revslider/banner.png?rev=6.2.23\";}s:4:\"name\";s:17:\"Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:6:\"stable\";s:3:\"4.2\";s:7:\"version\";s:6:\"6.2.23\";s:6:\"tested\";s:5:\"5.5.1\";s:14:\"upgrade_notice\";a:0:{}s:11:\"last_update\";s:10:\"2020-09-15\";s:12:\"last_updated\";s:10:\"2020-09-15\";s:8:\"requires\";s:3:\"3.6\";s:6:\"author\";s:51:\"<a href=\"https://www.themepunch.com\">ThemePunch</a>\";s:7:\"package\";s:100:\"http://updates.themepunch-ext-b.tools/revslider/download.php?code=a61706-33c2e0-c29d5f-ffcceb-d75833\";s:13:\"download_link\";s:100:\"http://updates.themepunch-ext-b.tools/revslider/download.php?code=a61706-33c2e0-c29d5f-ffcceb-d75833\";s:9:\"file_name\";s:13:\"revslider.zip\";s:15:\"active_installs\";i:7000100;s:8:\"homepage\";s:33:\"https://revolution.themepunch.com\";s:8:\"sections\";a:3:{s:11:\"description\";s:497:\"<h4>Slider Revolution WordPress Builder Plugin</h4>\n	<p>Slider Revolution 6 is a new way to build rich & dynamic content for your websites. With our powerful visual editor, you can create modern designs in no time, and with no coding experience required.</p><p>Create Sliders & Carousels, Hero Headers, Content Modules, Full Websites, Dynamic Solutions and Special FX with our amazing Add-Ons.</p>\n	<p>200+ templates are included in our online library. Cutting edge designs. Easily customized.</p>\";s:9:\"changelog\";s:151:\"<p>For Slider Revolution\'s changelog, please visit <a href=\"https://www.themepunch.com/slider-revolution/changelog/\" target=\"_blank\">this</a> site!</p>\";s:3:\"faq\";s:2178:\"<div class=\"tp-faq-content\"><div class=\"tp-faq-column tp-faq-recent\"><h4>Recent Solutions</h4><ul class=\"tp-faq-recent-content ready\"><li><a href=\"https://www.youtube.com/watch?v=sCcnw5bZqYY&amp;list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_&amp;index=2&amp;t=111s\" target=\"_blank\" title=\"Video Tutorials\">Video Tutorials</a></li><li><a href=\"https://www.themepunch.com/faq/responsive-content/\" target=\"_blank\" title=\"Responsive Content Setup\">Responsive Content Setup</a></li><li><a href=\"https://www.themepunch.com/faq/video-content-mobile/\" target=\"_blank\" title=\"Video Content &amp; Mobile Considerations\">Video Content &amp; Mobile Considerations</a></li><li><a href=\"https://www.themepunch.com/faq/how-to-change-the-timing-of-slides/\" target=\"_blank\" title=\"How to change the timing of Slides\">How to change the timing of Slides</a></li><li><a href=\"https://www.themepunch.com/faq/mouse-hovers-for-layer-content/\" target=\"_blank\" title=\"Mouse Hovers for Layer Content\"> Mouse Hovers for Layer Content</a></li></ul></div><div class=\"tp-faq-column tp-faq-popular\"><h4>Popular Solutions</h4><ul class=\"tp-faq-popular-content ready\"><li><a href=\"https://www.themepunch.com/faq/after-updating-make-sure-to-clear-all-caches/\" target=\"_blank\" title=\"After updating – Make sure to clear all caches\">After updating – Make sure to clear all caches</a></li><li><a href=\"https://www.themepunch.com/faq/purchase-code-registration-faqs/\" target=\"_blank\" title=\"Purchase Code Registration FAQ’s\">Purchase Code Registration FAQ’s</a></li><li><a href=\"https://www.themepunch.com/faq/ideal-image-size/\" target=\"_blank\" title=\"Ideal Image Size\">Ideal Image Size</a></li><li><a href=\"https://www.themepunch.com/faq/add-links-to-slides-and-layers/\" target=\"_blank\" title=\"How to Hyperlink Slides and Layers\">How to Hyperlink Slides and Layers</a></li><li><a href=\"https://www.themepunch.com/faq/where-to-find-the-purchase-code/\" target=\"_blank\" title=\"Where to find the Purchase Code\">Where to find the Purchase Code</a></li></ul></div><div style=\"clear: both\"></div><p><a class=\"button button-primary\" href=\"https://themepunch.com/support-center\"><strong>See All Faq\'s</strong></a></p></div>\";}s:3:\"url\";s:60:\"https://www.themepunch.com/links/slider_revolution_wordpress\";s:8:\"external\";i:1;}}', 'yes'),
(1954, 'revslider_addon_particles_templates', 'a:0:{}', 'yes'),
(2085, '_transient_health-check-site-status-result', '{\"good\":\"10\",\"recommended\":\"10\",\"critical\":\"0\"}', 'yes'),
(3535, 'revslider_beforeafter_addon-update-check', '1605256752', 'yes'),
(3536, 'revslider-beforeafter-addon_update_info', 'O:8:\"stdClass\":0:{}', 'yes'),
(3537, 'revslider_explodinglayers_addon-update-check', '1605256752', 'yes'),
(3538, 'revslider-explodinglayers-addon_update_info', 'O:8:\"stdClass\":0:{}', 'yes'),
(3539, 'revslider_particles_addon-update-check', '1605256752', 'yes'),
(3540, 'revslider-particles-addon_update_info', 'O:8:\"stdClass\":0:{}', 'yes'),
(3541, 'revslider_slicey_addon-update-check', '1605256752', 'yes'),
(3542, 'revslider-slicey-addon_update_info', 'O:8:\"stdClass\":0:{}', 'yes'),
(5896, '_site_transient_timeout_browser_7317dcc85388f4cb43cf44d21c927296', '1606127582', 'no'),
(5897, '_site_transient_browser_7317dcc85388f4cb43cf44d21c927296', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"86.0.4240.193\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(5919, 'category_children', 'a:0:{}', 'yes'),
(6942, '_site_transient_timeout_php_check_e26e33de4a278e301580d402dcb3d659', '1606202433', 'no'),
(6943, '_site_transient_php_check_e26e33de4a278e301580d402dcb3d659', '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'),
(6967, 'maple_website_loader', 'ball-pulse', 'yes'),
(6978, 'maple_style_first_save', 'true', 'yes'),
(9944, '_transient_timeout_orders-all-statuses', '1606466195', 'no'),
(9945, '_transient_orders-all-statuses', 'a:2:{s:7:\"version\";s:10:\"1605669739\";s:5:\"value\";a:0:{}}', 'no'),
(9950, '_transient_timeout_wc_marketing_recommended_plugins', '1606120599', 'no'),
(9951, '_transient_wc_marketing_recommended_plugins', 'a:12:{i:0;a:7:{s:5:\"title\";s:11:\"AutomateWoo\";s:11:\"description\";s:86:\"Convert and retain customers with automated marketing that does the hard work for you.\";s:3:\"url\";s:110:\"https://woocommerce.com/products/automatewoo/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/automatewoo.svg\";s:7:\"product\";s:11:\"automatewoo\";s:6:\"plugin\";s:27:\"automatewoo/automatewoo.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}}i:1;a:7:{s:5:\"title\";s:25:\"Mailchimp for WooCommerce\";s:11:\"description\";s:73:\"Send targeted campaigns, recover abandoned carts and more with Mailchimp.\";s:3:\"url\";s:124:\"https://woocommerce.com/products/mailchimp-for-woocommerce/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/mailchimp.svg\";s:7:\"product\";s:25:\"mailchimp-for-woocommerce\";s:6:\"plugin\";s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}}i:2;a:7:{s:5:\"title\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:79:\"Grow your business by targeting the right people & driving sales with Facebook.\";s:3:\"url\";s:107:\"https://woocommerce.com/products/facebook/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:98:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/facebook.svg\";s:7:\"product\";s:8:\"facebook\";s:6:\"plugin\";s:53:\"facebook-for-woocommerce/facebook-for-woocommerce.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}}i:3;a:7:{s:5:\"title\";s:32:\"Google Ads & Marketing by Kliken\";s:11:\"description\";s:121:\"Get in front of shoppers and drive traffic so you can grow your business with Smart Shopping Campaigns and free listings.\";s:3:\"url\";s:109:\"https://woocommerce.com/products/google-ads/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/google-ads.svg\";s:7:\"product\";s:10:\"google-ads\";s:6:\"plugin\";s:59:\"kliken-marketing-for-google/kliken-marketing-for-google.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}}i:4;a:7:{s:5:\"title\";s:23:\"HubSpot for WooCommerce\";s:11:\"description\";s:76:\"Grow traffic, convert leads, close deals, and turn customers into promoters.\";s:3:\"url\";s:122:\"https://woocommerce.com/products/hubspot-for-woocommerce/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/hubspot.svg\";s:7:\"product\";s:23:\"hubspot-for-woocommerce\";s:6:\"plugin\";s:51:\"hubspot-for-woocommerce/hubspot-for-woocommerce.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}}i:5;a:7:{s:5:\"title\";s:41:\"Amazon & eBay Integration for WooCommerce\";s:11:\"description\";s:75:\"List your entire WooCommerce product catalog on Amazon and eBay in minutes.\";s:3:\"url\";s:122:\"https://woocommerce.com/products/amazon-ebay-integration/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/amazon-ebay.svg\";s:7:\"product\";s:23:\"amazon-ebay-integration\";s:6:\"plugin\";s:75:\"woocommerce-amazon-ebay-integration/woocommerce-amazon-ebay-integration.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}}i:6;a:7:{s:5:\"title\";s:20:\"Personalized Coupons\";s:11:\"description\";s:86:\"Generate dynamic personalized coupons for your customers that increase purchase rates.\";s:3:\"url\";s:110:\"https://woocommerce.com/products/automatewoo/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:122:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/automatewoo-personalized-coupons.svg\";s:7:\"product\";s:11:\"automatewoo\";s:6:\"plugin\";s:27:\"automatewoo/automatewoo.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}}i:7;a:7:{s:5:\"title\";s:13:\"Smart Coupons\";s:11:\"description\";s:100:\"Powerful, \"all in one\" solution for gift certificates, store credits, discount coupons and vouchers.\";s:3:\"url\";s:112:\"https://woocommerce.com/products/smart-coupons/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/woocommerce-smart-coupons.svg\";s:7:\"product\";s:25:\"woocommerce-smart-coupons\";s:6:\"plugin\";s:55:\"woocommerce-smart-coupons/woocommerce-smart-coupons.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}}i:8;a:7:{s:5:\"title\";s:11:\"URL Coupons\";s:11:\"description\";s:108:\"Create a unique URL that applies a discount and optionally adds one or more products to the customer\'s cart.\";s:3:\"url\";s:110:\"https://woocommerce.com/products/url-coupons/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/woocommerce-url-coupons.svg\";s:7:\"product\";s:23:\"woocommerce-url-coupons\";s:6:\"plugin\";s:51:\"woocommerce-url-coupons/woocommerce-url-coupons.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}}i:9;a:7:{s:5:\"title\";s:24:\"WooCommerce Store Credit\";s:11:\"description\";s:77:\"Create \"store credit\" coupons for customers which are redeemable at checkout.\";s:3:\"url\";s:111:\"https://woocommerce.com/products/store-credit/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/woocommerce-store-credit.svg\";s:7:\"product\";s:24:\"woocommerce-store-credit\";s:6:\"plugin\";s:53:\"woocommerce-store-credit/woocommerce-store-credit.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}}i:10;a:7:{s:5:\"title\";s:17:\"Free Gift Coupons\";s:11:\"description\";s:59:\"Give away a free item to any customer with the coupon code.\";s:3:\"url\";s:116:\"https://woocommerce.com/products/free-gift-coupons/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:119:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/woocommerce-free-gift-coupons.svg\";s:7:\"product\";s:29:\"woocommerce-free-gift-coupons\";s:6:\"plugin\";s:63:\"woocommerce-free-gift-coupons/woocommerce-free-gift-coupons.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}}i:11;a:7:{s:5:\"title\";s:13:\"Group Coupons\";s:11:\"description\";s:137:\"Coupons for groups. Provides the option to have coupons that are restricted to group members or roles. Works with the free Groups plugin.\";s:3:\"url\";s:112:\"https://woocommerce.com/products/group-coupons/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:4:\"icon\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/woocommerce-group-coupons.svg\";s:7:\"product\";s:25:\"woocommerce-group-coupons\";s:6:\"plugin\";s:55:\"woocommerce-group-coupons/woocommerce-group-coupons.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}}}', 'no'),
(11505, '_transient_timeout_wc_report_sales_by_date', '1606043751', 'no'),
(11506, '_transient_wc_report_sales_by_date', 'a:8:{s:32:\"4abc720ac703a1522cfe76e36fa66687\";a:0:{}s:32:\"9f25ed61d9894126eeb3077d236d45f1\";a:0:{}s:32:\"5070bfb1d2f1ff510d194db15bff9fa7\";a:0:{}s:32:\"dd057a69c6a1d6ad8ac84693372a66b0\";N;s:32:\"ad586491a5d0947092fc7e82195c5b75\";a:0:{}s:32:\"f1195b85df1ae77b2dc39e6b4378e414\";a:0:{}s:32:\"20db607b49323f9085e1f3751f95f06b\";a:0:{}s:32:\"7659d1e8516fe4f84a36566939d8ad66\";a:0:{}}', 'no'),
(11507, '_transient_timeout_wc_admin_report', '1606043751', 'no'),
(11508, '_transient_wc_admin_report', 'a:1:{s:32:\"a51a6e017b8939eb1209c058bcd19e30\";a:0:{}}', 'no'),
(11546, '_transient_timeout__woocommerce_helper_updates', '1606051000', 'no'),
(11547, '_transient__woocommerce_helper_updates', 'a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1606007800;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}', 'no'),
(11551, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_AU/wordpress-5.5.3.zip\";s:6:\"locale\";s:5:\"en_AU\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_AU/wordpress-5.5.3.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.5.3\";s:7:\"version\";s:5:\"5.5.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1606023154;s:15:\"version_checked\";s:5:\"5.5.3\";s:12:\"translations\";a:0:{}}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(11552, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1606023158;s:7:\"checked\";a:5:{s:11:\"maple-child\";s:3:\"2.2\";s:5:\"maple\";s:5:\"2.9.3\";s:14:\"twentynineteen\";s:3:\"1.7\";s:15:\"twentyseventeen\";s:3:\"2.4\";s:12:\"twentytwenty\";s:3:\"1.5\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.7.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.4.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.5.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}', 'no'),
(11595, '_site_transient_timeout_envato_market_plugins', '1606026762', 'no'),
(11596, '_site_transient_envato_market_plugins', 'a:4:{s:9:\"purchased\";a:0:{}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:0:{}}', 'no'),
(11601, '_site_transient_timeout_envato_market_themes', '1606026758', 'no'),
(11602, '_site_transient_envato_market_themes', 'a:4:{s:9:\"purchased\";a:0:{}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:0:{}}', 'no'),
(11603, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1606023162;s:7:\"checked\";a:20:{s:19:\"akismet/akismet.php\";s:5:\"4.1.7\";s:33:\"classic-editor/classic-editor.php\";s:3:\"1.6\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"5.3\";s:31:\"cubeportfolio/cubeportfolio.php\";s:5:\"3.8.1\";s:39:\"easy-theme-and-plugin-upgrades/init.php\";s:5:\"2.0.1\";s:31:\"envato-market/envato-market.php\";s:5:\"2.0.5\";s:9:\"hello.php\";s:5:\"1.7.2\";s:51:\"maple_custom_post_types/maple_custom_post_types.php\";s:5:\"2.3.1\";s:57:\"meks-easy-instagram-widget/meks-easy-instagram-widget.php\";s:3:\"3.0\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:5:\"2.0.2\";s:23:\"revslider/revslider.php\";s:6:\"6.2.23\";s:59:\"revslider-beforeafter-addon/revslider-beforeafter-addon.php\";s:5:\"2.0.8\";s:67:\"revslider-explodinglayers-addon/revslider-explodinglayers-addon.php\";s:5:\"2.1.3\";s:55:\"revslider-particles-addon/revslider-particles-addon.php\";s:5:\"2.2.6\";s:49:\"revslider-slicey-addon/revslider-slicey-addon.php\";s:5:\"2.0.6\";s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:6:\"3.19.6\";s:53:\"widget-importer-exporter/widget-importer-exporter.php\";s:3:\"1.6\";s:27:\"woocommerce/woocommerce.php\";s:5:\"4.6.2\";s:41:\"wordpress-importer/wordpress-importer.php\";s:3:\"0.7\";s:27:\"js_composer/js_composer.php\";s:5:\"6.4.1\";}s:8:\"response\";a:2:{s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"4.7.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.3\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"6892199\";s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:6:\"plugin\";s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:14:\"upgrade_notice\";s:59:\" Please activate your license to receive automatic updates.\";s:11:\"new_version\";s:6:\"3.19.7\";s:3:\"url\";s:74:\"https://codecanyon.net/cart/add_items?item_ids=6892199&ref=BrainstormForce\";s:7:\"package\";s:0:\"\";s:6:\"tested\";s:5:\"5.5.3\";s:12:\"requires_php\";s:0:\"\";s:5:\"icons\";a:3:{s:2:\"1x\";s:0:\"\";s:2:\"2x\";s:0:\"\";s:7:\"default\";s:0:\"\";}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":9:{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:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.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:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{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:3:\"5.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"cubeportfolio/cubeportfolio.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/cubeportfolio\";s:4:\"slug\";s:13:\"cubeportfolio\";s:6:\"plugin\";s:31:\"cubeportfolio/cubeportfolio.php\";s:11:\"new_version\";s:5:\"1.1.6\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/cubeportfolio/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/cubeportfolio.1.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/cubeportfolio/assets/icon-256x256.png?rev=2313978\";s:2:\"1x\";s:66:\"https://ps.w.org/cubeportfolio/assets/icon-128x128.png?rev=2313978\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/cubeportfolio/assets/banner-772x250.jpg?rev=2313978\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"easy-theme-and-plugin-upgrades/init.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:44:\"w.org/plugins/easy-theme-and-plugin-upgrades\";s:4:\"slug\";s:30:\"easy-theme-and-plugin-upgrades\";s:6:\"plugin\";s:39:\"easy-theme-and-plugin-upgrades/init.php\";s:11:\"new_version\";s:5:\"2.0.1\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/easy-theme-and-plugin-upgrades.2.0.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:74:\"https://s.w.org/plugins/geopattern-icon/easy-theme-and-plugin-upgrades.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:57:\"meks-easy-instagram-widget/meks-easy-instagram-widget.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:40:\"w.org/plugins/meks-easy-instagram-widget\";s:4:\"slug\";s:26:\"meks-easy-instagram-widget\";s:6:\"plugin\";s:57:\"meks-easy-instagram-widget/meks-easy-instagram-widget.php\";s:11:\"new_version\";s:5:\"1.2.2\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/meks-easy-instagram-widget/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/meks-easy-instagram-widget.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/meks-easy-instagram-widget/assets/icon-256x256.png?rev=1782690\";s:2:\"1x\";s:79:\"https://ps.w.org/meks-easy-instagram-widget/assets/icon-128x128.png?rev=1782690\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/meks-easy-instagram-widget/assets/banner-772x250.jpg?rev=2146257\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"really-simple-captcha/really-simple-captcha.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/really-simple-captcha\";s:4:\"slug\";s:21:\"really-simple-captcha\";s:6:\"plugin\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:11:\"new_version\";s:5:\"2.0.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/really-simple-captcha/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/really-simple-captcha.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/really-simple-captcha/assets/icon-256x256.png?rev=1047241\";s:2:\"1x\";s:74:\"https://ps.w.org/really-simple-captcha/assets/icon-128x128.png?rev=1047241\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/really-simple-captcha/assets/banner-1544x500.png?rev=880406\";s:2:\"1x\";s:75:\"https://ps.w.org/really-simple-captcha/assets/banner-772x250.png?rev=880406\";}s:11:\"banners_rtl\";a:0:{}}s:53:\"widget-importer-exporter/widget-importer-exporter.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/widget-importer-exporter\";s:4:\"slug\";s:24:\"widget-importer-exporter\";s:6:\"plugin\";s:53:\"widget-importer-exporter/widget-importer-exporter.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/widget-importer-exporter/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/widget-importer-exporter.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/widget-importer-exporter/assets/icon-256x256.jpg?rev=990577\";s:2:\"1x\";s:76:\"https://ps.w.org/widget-importer-exporter/assets/icon-128x128.jpg?rev=990577\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/widget-importer-exporter/assets/banner-1544x500.jpg?rev=775677\";s:2:\"1x\";s:78:\"https://ps.w.org/widget-importer-exporter/assets/banner-772x250.jpg?rev=741218\";}s:11:\"banners_rtl\";a:0:{}}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:3:\"0.7\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:71:\"https://ps.w.org/wordpress-importer/assets/icon-256x256.png?rev=1908375\";s:2:\"1x\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";s:3:\"svg\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654\";}s:11:\"banners_rtl\";a:0:{}}}}', 'no'),
(11631, '_site_transient_timeout_theme_roots', '1606031553', 'no'),
(11632, '_site_transient_theme_roots', 'a:5:{s:11:\"maple-child\";s:7:\"/themes\";s:5:\"maple\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";}', 'no');

-- --------------------------------------------------------

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

CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(8, 8, '_form', '<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),
(9, 8, '_mail', 'a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:38:\"[_site_title] <drcolinrusso@gmail.com>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(10, 8, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:38:\"[_site_title] <drcolinrusso@gmail.com>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(11, 8, '_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.\";}'),
(12, 8, '_additional_settings', NULL),
(13, 8, '_locale', 'en_US'),
(14, 9, '_wp_attached_file', 'woocommerce-placeholder.png'),
(15, 9, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:33:\"woocommerce-placeholder-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20, 18, '_edit_lock', '1605868063:1'),
(21, 18, '_edit_last', '1'),
(22, 18, '_wp_page_template', 'page.php'),
(23, 18, 'slide_template', 'default'),
(24, 18, 'rs_page_bg_color', '#ffffff'),
(25, 18, '_wpb_vc_js_status', 'true'),
(26, 20, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}'),
(27, 18, 'posts_add_category_filter_value', 'no'),
(28, 18, 'posts_add_category_filter_counter_value', 'yes'),
(29, 18, 'posts_filter_orderby_value', 'date'),
(30, 18, 'posts_filter_order_value', 'desc'),
(31, 18, 'maple_enable_custom_header_options_value', 'no'),
(32, 18, 'maple_enable_website_loading_value', 'off'),
(33, 18, 'maple_content_to_the_top_value', 'off'),
(34, 18, 'maple_custom_header_pre_value', 'light'),
(35, 18, 'maple_custom_header_after_value', 'light'),
(36, 18, 'maple_enable_custom_pagetitle_options_value', 'no'),
(37, 18, 'maple_header_type_value', 'color'),
(38, 18, 'maple_pagetitle_image_parallax_value', 'off'),
(39, 18, 'maple_pagetitle_image_overlay_value', 'off'),
(40, 18, 'maple_pagetitle_overlay_type_value', 'color'),
(41, 18, 'maple_pagetitle_overlay_color_value', '212121'),
(42, 18, 'maple_pagetitle_overlay_pattern_value', 'none'),
(43, 18, 'maple_pagetitle_overlay_opacity_value', '100%'),
(44, 18, 'maple_header_color_opacity_value', '100'),
(45, 18, 'maple_header_pattern_value', 'none'),
(46, 18, 'maple_banner_slider_value', '-1'),
(47, 18, 'maple_page_title_padding_value', '140px'),
(48, 18, 'maple_header_text_alignment_value', 'center'),
(49, 18, 'maple_hide_pagetitle_value', 'yes'),
(50, 18, 'maple_header_text_font_value', 'Helvetica Neue'),
(51, 18, 'maple_header_text_color_value', 'f2f2f2'),
(52, 18, 'maple_header_text_size_value', '42px'),
(53, 18, 'maple_header_text_margin_top_value', '40px'),
(54, 18, 'maple_hide_sec_pagetitle_value', 'yes'),
(55, 18, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(56, 18, 'maple_secondary_title_text_color_value', '949494'),
(57, 18, 'maple_secondary_title_text_size_value', '19px'),
(58, 18, 'maple_header_secondary_text_margin_top_value', '15px'),
(59, 18, 'maple_enable_breadcrumbs_value', 'yes'),
(60, 18, 'maple_breadcrumbs_margin_top_value', '30px'),
(61, 18, 'sidebar_for_default_value', 'none'),
(62, 18, 'sidebars_available_value', 'defaultblogsidebar'),
(63, 18, '_wpb_shortcodes_custom_css', '.vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}.vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605859869207{margin-top: px !important;}'),
(64, 22, '_edit_last', '1'),
(65, 22, '_edit_lock', '1604983254:1'),
(66, 22, '_wp_page_template', '../public/views/revslider-page-template.php'),
(67, 22, 'slide_template', ''),
(68, 22, 'rs_page_bg_color', ''),
(69, 24, '_edit_last', '1'),
(70, 24, '_edit_lock', '1605957040:1'),
(71, 25, '_menu_item_type', 'custom'),
(72, 25, '_menu_item_menu_item_parent', '0'),
(73, 25, '_menu_item_object_id', '25'),
(74, 25, '_menu_item_object', 'custom'),
(75, 25, '_menu_item_target', ''),
(76, 25, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(77, 25, '_menu_item_xfn', ''),
(78, 25, '_menu_item_url', 'http://localhost:8888/wordpress/'),
(79, 25, '_menu_item_orphaned', '1604983517'),
(80, 24, '_wp_page_template', 'page.php'),
(81, 24, 'slide_template', 'default'),
(82, 24, 'rs_page_bg_color', '#ffffff'),
(100, 29, '_edit_last', '1'),
(101, 29, '_wp_page_template', 'page.php'),
(102, 29, 'slide_template', 'default'),
(103, 29, 'rs_page_bg_color', '#ffffff'),
(113, 29, '_wpb_vc_js_status', 'true'),
(114, 29, 'posts_add_category_filter_value', 'no'),
(115, 29, 'posts_add_category_filter_counter_value', 'yes'),
(116, 29, 'posts_filter_orderby_value', 'date'),
(117, 29, 'posts_filter_order_value', 'desc'),
(118, 29, 'maple_enable_custom_header_options_value', 'yes'),
(119, 29, 'maple_enable_website_loading_value', 'off'),
(120, 29, 'maple_content_to_the_top_value', 'on'),
(121, 29, 'maple_custom_header_pre_value', 'light'),
(122, 29, 'maple_custom_header_after_value', 'light'),
(123, 29, 'maple_enable_custom_pagetitle_options_value', 'no'),
(124, 29, 'maple_header_type_value', 'image'),
(125, 29, 'maple_pagetitle_image_parallax_value', 'off'),
(126, 29, 'maple_pagetitle_image_overlay_value', 'off'),
(127, 29, 'maple_pagetitle_overlay_type_value', 'color'),
(128, 29, 'maple_pagetitle_overlay_color_value', '212121'),
(129, 29, 'maple_pagetitle_overlay_pattern_value', 'none'),
(130, 29, 'maple_pagetitle_overlay_opacity_value', '100%'),
(131, 29, 'maple_header_color_opacity_value', '100'),
(132, 29, 'maple_header_pattern_value', 'none'),
(133, 29, 'maple_banner_slider_value', '-1'),
(134, 29, 'maple_page_title_padding_value', '140px'),
(135, 29, 'maple_header_text_alignment_value', 'center'),
(136, 29, 'maple_hide_pagetitle_value', 'yes'),
(137, 29, 'maple_header_text_font_value', 'Helvetica Neue'),
(138, 29, 'maple_header_text_color_value', 'f2f2f2'),
(139, 29, 'maple_header_text_size_value', '42px'),
(140, 29, 'maple_header_text_margin_top_value', '40px'),
(141, 29, 'maple_hide_sec_pagetitle_value', 'yes'),
(142, 29, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(143, 29, 'maple_secondary_title_text_color_value', '949494'),
(144, 29, 'maple_secondary_title_text_size_value', '19px'),
(145, 29, 'maple_header_secondary_text_margin_top_value', '15px'),
(146, 29, 'maple_enable_breadcrumbs_value', 'yes'),
(147, 29, 'maple_breadcrumbs_margin_top_value', '30px'),
(148, 29, 'sidebar_for_default_value', 'none'),
(149, 29, 'sidebars_available_value', 'defaultblogsidebar'),
(150, 29, '_edit_lock', '1606008147:1'),
(159, 33, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481235585236{margin-top: 80px !important;padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(160, 34, '_edit_lock', '1604987280:1'),
(185, 34, '_wp_trash_meta_status', 'publish'),
(186, 34, '_wp_trash_meta_time', '1604987302'),
(187, 38, '_wp_trash_meta_status', 'publish'),
(188, 38, '_wp_trash_meta_time', '1604987468'),
(189, 39, '_edit_lock', '1604987549:1'),
(190, 39, '_wp_trash_meta_status', 'publish'),
(191, 39, '_wp_trash_meta_time', '1604987558'),
(192, 42, '_wp_attached_file', '2020/11/Sydney-photo-by-Colin-Russo-scaled.jpg'),
(193, 42, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:46:\"2020/11/Sydney-photo-by-Colin-Russo-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Sydney-photo-by-Colin-Russo-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Sydney-photo-by-Colin-Russo-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Sydney-photo-by-Colin-Russo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Sydney-photo-by-Colin-Russo-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"Sydney-photo-by-Colin-Russo-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"Sydney-photo-by-Colin-Russo-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:40:\"Sydney-photo-by-Colin-Russo-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:37:\"Sydney-photo-by-Colin-Russo-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:39:\"Sydney-photo-by-Colin-Russo-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:39:\"Sydney-photo-by-Colin-Russo-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:40:\"Sydney-photo-by-Colin-Russo-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:40:\"Sydney-photo-by-Colin-Russo-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:41:\"Sydney-photo-by-Colin-Russo-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"Sydney-photo-by-Colin-Russo-300x300.jpg\";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:39:\"Sydney-photo-by-Colin-Russo-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:39:\"Sydney-photo-by-Colin-Russo-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:39:\"Sydney-photo-by-Colin-Russo-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:39:\"Sydney-photo-by-Colin-Russo-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:39:\"Sydney-photo-by-Colin-Russo-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:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:31:\"Sydney-photo-by-Colin-Russo.jpg\";}'),
(194, 18, '_thumbnail_id', '42'),
(195, 43, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(197, 45, '_wp_attached_file', '2020/11/Sydney-Photo-by-Engaging-Futures-scaled.jpg'),
(198, 45, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1446;s:4:\"file\";s:51:\"2020/11/Sydney-Photo-by-Engaging-Futures-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Sydney-Photo-by-Engaging-Futures-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Sydney-Photo-by-Engaging-Futures-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Sydney-Photo-by-Engaging-Futures-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Sydney-Photo-by-Engaging-Futures-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"Sydney-Photo-by-Engaging-Futures-1536x867.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:867;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Sydney-Photo-by-Engaging-Futures-2048x1157.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:45:\"Sydney-Photo-by-Engaging-Futures-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:42:\"Sydney-Photo-by-Engaging-Futures-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:44:\"Sydney-Photo-by-Engaging-Futures-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:44:\"Sydney-Photo-by-Engaging-Futures-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:45:\"Sydney-Photo-by-Engaging-Futures-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:45:\"Sydney-Photo-by-Engaging-Futures-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:46:\"Sydney-Photo-by-Engaging-Futures-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Sydney-Photo-by-Engaging-Futures-300x300.jpg\";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:44:\"Sydney-Photo-by-Engaging-Futures-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Sydney-Photo-by-Engaging-Futures-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:44:\"Sydney-Photo-by-Engaging-Futures-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:44:\"Sydney-Photo-by-Engaging-Futures-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Sydney-Photo-by-Engaging-Futures-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:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:36:\"Sydney-Photo-by-Engaging-Futures.jpg\";}'),
(199, 46, '_wpb_shortcodes_custom_css', '.vc_custom_1481568704718{margin-top: 120px !important;}.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(200, 47, '_wpb_shortcodes_custom_css', '.vc_custom_1481568704718{margin-top: 120px !important;}.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(201, 48, '_wp_attached_file', '2020/11/Sydney-Harbour-by-Engaging-Futures.png'),
(202, 48, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:894;s:4:\"file\";s:46:\"2020/11/Sydney-Harbour-by-Engaging-Futures.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Sydney-Harbour-by-Engaging-Futures-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Sydney-Harbour-by-Engaging-Futures-1024x358.png\";s:5:\"width\";i:1024;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Sydney-Harbour-by-Engaging-Futures-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Sydney-Harbour-by-Engaging-Futures-768x268.png\";s:5:\"width\";i:768;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Sydney-Harbour-by-Engaging-Futures-1536x536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Sydney-Harbour-by-Engaging-Futures-2048x715.png\";s:5:\"width\";i:2048;s:6:\"height\";i:715;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Sydney-Harbour-by-Engaging-Futures-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Sydney-Harbour-by-Engaging-Futures-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Sydney-Harbour-by-Engaging-Futures-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Sydney-Harbour-by-Engaging-Futures-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Sydney-Harbour-by-Engaging-Futures-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"Sydney-Harbour-by-Engaging-Futures-500x894.png\";s:5:\"width\";i:500;s:6:\"height\";i:894;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"Sydney-Harbour-by-Engaging-Futures-1000x894.png\";s:5:\"width\";i:1000;s:6:\"height\";i:894;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Sydney-Harbour-by-Engaging-Futures-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:46:\"Sydney-Harbour-by-Engaging-Futures-600x210.png\";s:5:\"width\";i:600;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Sydney-Harbour-by-Engaging-Futures-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:46:\"Sydney-Harbour-by-Engaging-Futures-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:46:\"Sydney-Harbour-by-Engaging-Futures-600x210.png\";s:5:\"width\";i:600;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Sydney-Harbour-by-Engaging-Futures-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:{}}}'),
(203, 50, '_wpb_shortcodes_custom_css', '.vc_custom_1604993088307{margin-top: 120px !important;}.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(205, 53, '_wpb_shortcodes_custom_css', '.vc_custom_1604993088307{margin-top: 120px !important;}.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(206, 54, '_wpb_shortcodes_custom_css', '.vc_custom_1604993088307{margin-top: 120px !important;}.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(209, 57, '_wpb_shortcodes_custom_css', '.vc_custom_1604993088307{margin-top: 120px !important;}.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(219, 59, '_menu_item_type', 'post_type'),
(220, 59, '_menu_item_menu_item_parent', '0'),
(221, 59, '_menu_item_object_id', '18'),
(222, 59, '_menu_item_object', 'page'),
(223, 59, '_menu_item_target', ''),
(224, 59, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(225, 59, '_menu_item_xfn', ''),
(226, 59, '_menu_item_url', ''),
(227, 59, '_menu_item_orphaned', '1605001695'),
(228, 16, '_wp_trash_meta_status', 'draft'),
(229, 16, '_wp_trash_meta_time', '1605001749'),
(230, 16, '_wp_desired_post_slug', ''),
(231, 60, '_edit_lock', '1605002085:1'),
(232, 61, '_wp_attached_file', '2020/11/logo_edited_edited.png'),
(233, 61, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1931;s:6:\"height\";i:1829;s:4:\"file\";s:30:\"2020/11/logo_edited_edited.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"logo_edited_edited-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"logo_edited_edited-1024x970.png\";s:5:\"width\";i:1024;s:6:\"height\";i:970;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"logo_edited_edited-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"logo_edited_edited-768x727.png\";s:5:\"width\";i:768;s:6:\"height\";i:727;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"logo_edited_edited-1536x1455.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1455;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:31:\"logo_edited_edited-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:28:\"logo_edited_edited-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:30:\"logo_edited_edited-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:30:\"logo_edited_edited-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:31:\"logo_edited_edited-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:31:\"logo_edited_edited-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:32:\"logo_edited_edited-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"logo_edited_edited-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"logo_edited_edited-600x568.png\";s:5:\"width\";i:600;s:6:\"height\";i:568;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"logo_edited_edited-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:30:\"logo_edited_edited-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"logo_edited_edited-600x568.png\";s:5:\"width\";i:600;s:6:\"height\";i:568;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"logo_edited_edited-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:{}}}'),
(234, 62, '_wp_attached_file', '2020/11/cropped-logo_edited_edited.png'),
(235, 62, '_wp_attachment_context', 'site-icon'),
(236, 62, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:38:\"2020/11/cropped-logo_edited_edited.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"cropped-logo_edited_edited-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"cropped-logo_edited_edited-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:36:\"cropped-logo_edited_edited-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:38:\"cropped-logo_edited_edited-512x400.png\";s:5:\"width\";i:512;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:38:\"cropped-logo_edited_edited-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:38:\"cropped-logo_edited_edited-512x500.png\";s:5:\"width\";i:512;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:38:\"cropped-logo_edited_edited-500x512.png\";s:5:\"width\";i:500;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"cropped-logo_edited_edited-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:38:\"cropped-logo_edited_edited-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:38:\"cropped-logo_edited_edited-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:38:\"cropped-logo_edited_edited-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:38:\"cropped-logo_edited_edited-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:38:\"cropped-logo_edited_edited-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:38:\"cropped-logo_edited_edited-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:36:\"cropped-logo_edited_edited-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:{}}}'),
(237, 60, '_wp_trash_meta_status', 'publish'),
(238, 60, '_wp_trash_meta_time', '1605002137'),
(239, 64, '_wp_attached_file', '2020/11/logo_edited-1.png'),
(240, 64, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1344;s:4:\"file\";s:25:\"2020/11/logo_edited-1.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"logo_edited-1-300x269.png\";s:5:\"width\";i:300;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"logo_edited-1-1024x918.png\";s:5:\"width\";i:1024;s:6:\"height\";i:918;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"logo_edited-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"logo_edited-1-768x688.png\";s:5:\"width\";i:768;s:6:\"height\";i:688;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:26:\"logo_edited-1-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:23:\"logo_edited-1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:25:\"logo_edited-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:25:\"logo_edited-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:26:\"logo_edited-1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:26:\"logo_edited-1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:27:\"logo_edited-1-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"logo_edited-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"logo_edited-1-600x538.png\";s:5:\"width\";i:600;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"logo_edited-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"logo_edited-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"logo_edited-1-600x538.png\";s:5:\"width\";i:600;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"logo_edited-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(241, 71, '_edit_last', '1'),
(242, 71, '_edit_lock', '1605008499:1'),
(243, 71, '_wp_page_template', 'one-page-template.php'),
(244, 71, 'slide_template', 'default'),
(245, 71, 'rs_page_bg_color', '#ffffff'),
(246, 71, '_wpb_vc_js_status', 'false'),
(247, 71, 'posts_add_category_filter_value', 'no'),
(248, 71, 'posts_add_category_filter_counter_value', 'yes'),
(249, 71, 'posts_filter_orderby_value', 'date'),
(250, 71, 'posts_filter_order_value', 'desc'),
(251, 71, 'maple_enable_custom_header_options_value', 'no'),
(252, 71, 'maple_enable_website_loading_value', 'off'),
(253, 71, 'maple_content_to_the_top_value', 'on'),
(254, 71, 'maple_custom_header_pre_value', 'light'),
(255, 71, 'maple_custom_header_after_value', 'light'),
(256, 71, 'maple_enable_custom_pagetitle_options_value', 'no'),
(257, 71, 'maple_header_type_value', 'image'),
(258, 71, 'maple_pagetitle_image_parallax_value', 'off'),
(259, 71, 'maple_pagetitle_image_overlay_value', 'off'),
(260, 71, 'maple_pagetitle_overlay_type_value', 'color'),
(261, 71, 'maple_pagetitle_overlay_color_value', '212121'),
(262, 71, 'maple_pagetitle_overlay_pattern_value', 'none'),
(263, 71, 'maple_pagetitle_overlay_opacity_value', '100%'),
(264, 71, 'maple_header_color_opacity_value', '100'),
(265, 71, 'maple_header_pattern_value', 'none'),
(266, 71, 'maple_banner_slider_value', '-1'),
(267, 71, 'maple_page_title_padding_value', '140px'),
(268, 71, 'maple_header_text_alignment_value', 'center'),
(269, 71, 'maple_hide_pagetitle_value', 'yes'),
(270, 71, 'maple_header_text_font_value', 'Helvetica Neue'),
(271, 71, 'maple_header_text_color_value', 'f2f2f2'),
(272, 71, 'maple_header_text_size_value', '42px'),
(273, 71, 'maple_header_text_margin_top_value', '40px');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(274, 71, 'maple_hide_sec_pagetitle_value', 'yes'),
(275, 71, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(276, 71, 'maple_secondary_title_text_color_value', '949494'),
(277, 71, 'maple_secondary_title_text_size_value', '19px'),
(278, 71, 'maple_header_secondary_text_margin_top_value', '15px'),
(279, 71, 'maple_enable_breadcrumbs_value', 'yes'),
(280, 71, 'maple_breadcrumbs_margin_top_value', '30px'),
(281, 71, 'sidebar_for_default_value', 'none'),
(282, 71, 'sidebars_available_value', 'defaultblogsidebar'),
(293, 76, '_wp_attached_file', '2020/11/linearicons.zip'),
(294, 77, '_wp_attached_file', '2020/11/Ultimate-set.zip'),
(295, 78, '_wp_attached_file', '2020/11/WebHostingHub-Glyphs.zip'),
(296, 79, '_wp_attached_file', '2020/11/paintbrush.png'),
(297, 79, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:22:\"2020/11/paintbrush.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:{}}}'),
(298, 80, '_wp_attached_file', '2020/11/Mockup.zip'),
(299, 82, '_wp_attached_file', 'revslider/101.jpg'),
(300, 82, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1660;s:6:\"height\";i:1107;s:4:\"file\";s:17:\"revslider/101.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"101-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"101-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"101-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"101-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:17:\"101-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:16:\"101-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:13:\"101-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:15:\"101-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:15:\"101-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:16:\"101-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:16:\"101-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:17:\"101-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"101-300x300.jpg\";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:\"101-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:15:\"101-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:\"101-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:\"101-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:15:\"101-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:{}}}'),
(301, 83, '_wp_attached_file', 'revslider/01596free.jpg'),
(302, 83, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1660;s:6:\"height\";i:1113;s:4:\"file\";s:23:\"revslider/01596free.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"01596free-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"01596free-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"01596free-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"01596free-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"01596free-1536x1030.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1030;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:22:\"01596free-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:19:\"01596free-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:21:\"01596free-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:21:\"01596free-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:22:\"01596free-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:22:\"01596free-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:23:\"01596free-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"01596free-300x300.jpg\";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:\"01596free-600x402.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"01596free-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:\"01596free-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:\"01596free-600x402.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"01596free-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:{}}}'),
(303, 84, '_wp_attached_file', 'revslider/432423.jpg'),
(304, 84, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:931;s:4:\"file\";s:20:\"revslider/432423.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"432423-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"432423-1024x596.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:596;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"432423-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"432423-768x447.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"432423-1536x894.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:894;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:19:\"432423-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:16:\"432423-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:18:\"432423-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:18:\"432423-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:19:\"432423-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:18:\"432423-500x931.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:931;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:19:\"432423-1000x931.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:931;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"432423-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"432423-600x349.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"432423-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:\"432423-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"432423-600x349.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"432423-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:{}}}'),
(305, 85, '_wp_attached_file', 'revslider/relative_pencil3.png'),
(306, 85, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:600;s:6:\"height\";i:250;s:4:\"file\";s:30:\"revslider/relative_pencil3.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"relative_pencil3-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_pencil3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:26:\"relative_pencil3-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:28:\"relative_pencil3-500x250.png\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:28:\"relative_pencil3-500x250.png\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"relative_pencil3-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_pencil3-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:28:\"relative_pencil3-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_pencil3-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:{}}}'),
(307, 86, '_wp_attached_file', 'revslider/guy_transparent.png'),
(308, 86, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"revslider/guy_transparent.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"guy_transparent-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"guy_transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:27:\"guy_transparent-600x563.png\";s:5:\"width\";i:600;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:25:\"guy_transparent-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:27:\"guy_transparent-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:27:\"guy_transparent-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:27:\"guy_transparent-600x500.png\";s:5:\"width\";i:600;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:28:\"guy_transparent-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"guy_transparent-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:27:\"guy_transparent-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:27:\"guy_transparent-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:27:\"guy_transparent-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:{}}}'),
(309, 87, '_wp_attached_file', 'revslider/relative_pencil1.png'),
(310, 87, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:684;s:6:\"height\";i:404;s:4:\"file\";s:30:\"revslider/relative_pencil1.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"relative_pencil1-300x177.png\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_pencil1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:26:\"relative_pencil1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:28:\"relative_pencil1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:28:\"relative_pencil1-500x404.png\";s:5:\"width\";i:500;s:6:\"height\";i:404;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:28:\"relative_pencil1-500x404.png\";s:5:\"width\";i:500;s:6:\"height\";i:404;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"relative_pencil1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"relative_pencil1-600x354.png\";s:5:\"width\";i:600;s:6:\"height\";i:354;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_pencil1-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:28:\"relative_pencil1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"relative_pencil1-600x354.png\";s:5:\"width\";i:600;s:6:\"height\";i:354;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_pencil1-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:{}}}'),
(311, 88, '_wp_attached_file', 'revslider/relative_eraser2.png'),
(312, 88, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:250;s:6:\"height\";i:300;s:4:\"file\";s:30:\"revslider/relative_eraser2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_eraser2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:26:\"relative_eraser2-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_eraser2-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:28:\"relative_eraser2-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:{}}}'),
(313, 89, '_wp_attached_file', 'revslider/relative_pencil2.png'),
(314, 89, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:150;s:6:\"height\";i:170;s:4:\"file\";s:30:\"revslider/relative_pencil2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_pencil2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:26:\"relative_pencil2-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_pencil2-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:28:\"relative_pencil2-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:{}}}'),
(315, 90, '_wp_attached_file', 'revslider/relative_triangle.png'),
(316, 90, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:400;s:6:\"height\";i:500;s:4:\"file\";s:31:\"revslider/relative_triangle.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"relative_triangle-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"relative_triangle-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:27:\"relative_triangle-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:29:\"relative_triangle-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"relative_triangle-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:29:\"relative_triangle-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:29:\"relative_triangle-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:29:\"relative_triangle-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:{}}}'),
(317, 91, '_wp_attached_file', 'revslider/relative_glasses.png'),
(318, 91, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:400;s:6:\"height\";i:500;s:4:\"file\";s:30:\"revslider/relative_glasses.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"relative_glasses-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"relative_glasses-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:26:\"relative_glasses-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:28:\"relative_glasses-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"relative_glasses-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:28:\"relative_glasses-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:28:\"relative_glasses-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:28:\"relative_glasses-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:{}}}'),
(319, 92, '_wp_attached_file', 'revslider/girl_transparent.png'),
(320, 92, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"revslider/girl_transparent.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"girl_transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"girl_transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"girl_transparent-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:29:\"girl_transparent-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:26:\"girl_transparent-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:28:\"girl_transparent-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:28:\"girl_transparent-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:29:\"girl_transparent-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:29:\"girl_transparent-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"girl_transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"girl_transparent-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:28:\"girl_transparent-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:28:\"girl_transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"girl_transparent-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:28:\"girl_transparent-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:{}}}'),
(321, 93, '_wp_attached_file', 'revslider/serv1.jpg'),
(322, 93, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:848;s:6:\"height\";i:565;s:4:\"file\";s:19:\"revslider/serv1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"serv1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"serv1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"serv1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:17:\"serv1-848x563.jpg\";s:5:\"width\";i:848;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:15:\"serv1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:17:\"serv1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:17:\"serv1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:17:\"serv1-848x500.jpg\";s:5:\"width\";i:848;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:17:\"serv1-500x565.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"serv1-300x300.jpg\";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:\"serv1-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:\"serv1-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:\"serv1-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:\"serv1-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:\"serv1-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:{}}}'),
(323, 94, '_wp_attached_file', 'revslider/service-3.jpg'),
(324, 94, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:500;s:6:\"height\";i:281;s:4:\"file\";s:23:\"revslider/service-3.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"service-3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"service-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:19:\"service-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"service-3-300x281.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"service-3-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:\"service-3-300x281.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"service-3-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:{}}}'),
(325, 95, '_wp_attached_file', 'revslider/hv41.jpg'),
(326, 95, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1660;s:6:\"height\";i:1107;s:4:\"file\";s:18:\"revslider/hv41.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"hv41-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"hv41-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"hv41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"hv41-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:18:\"hv41-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:17:\"hv41-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:14:\"hv41-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:16:\"hv41-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:16:\"hv41-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:17:\"hv41-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:17:\"hv41-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:18:\"hv41-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"hv41-300x300.jpg\";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:\"hv41-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:16:\"hv41-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:\"hv41-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:\"hv41-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:16:\"hv41-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:{}}}'),
(327, 96, '_wp_attached_file', 'revslider/0244.jpg'),
(328, 96, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:18:\"revslider/0244.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0244-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"0244-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0244-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"0244-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:18:\"0244-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:17:\"0244-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:14:\"0244-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:16:\"0244-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:16:\"0244-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:17:\"0244-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:17:\"0244-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:18:\"0244-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"0244-300x300.jpg\";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:\"0244-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:16:\"0244-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:\"0244-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:\"0244-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:16:\"0244-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:{}}}'),
(329, 97, '_wp_attached_file', 'revslider/SW_CalebMorris2.jpg'),
(330, 97, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:29:\"revslider/SW_CalebMorris2.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"SW_CalebMorris2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"SW_CalebMorris2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"SW_CalebMorris2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"SW_CalebMorris2-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:29:\"SW_CalebMorris2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:28:\"SW_CalebMorris2-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:25:\"SW_CalebMorris2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:27:\"SW_CalebMorris2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:27:\"SW_CalebMorris2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:28:\"SW_CalebMorris2-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:28:\"SW_CalebMorris2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:29:\"SW_CalebMorris2-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"SW_CalebMorris2-300x300.jpg\";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:\"SW_CalebMorris2-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:27:\"SW_CalebMorris2-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:\"SW_CalebMorris2-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:\"SW_CalebMorris2-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:27:\"SW_CalebMorris2-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:{}}}'),
(331, 98, '_wpb_shortcodes_custom_css', '.vc_custom_1604993088307{margin-top: 120px !important;}.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(332, 101, '_edit_last', '1'),
(333, 101, '_edit_lock', '1605956654:1'),
(336, 103, '_wp_attached_file', '2020/11/revslider-6.2.23-zPcxlo7QMNLAb9UfZ4Z.zip'),
(337, 105, '_wp_attached_file', 'revslider/object_macscreen_1-2.png'),
(338, 105, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:34:\"revslider/object_macscreen_1-2.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"object_macscreen_1-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"object_macscreen_1-2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"object_macscreen_1-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"object_macscreen_1-2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"object_macscreen_1-2-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:33:\"object_macscreen_1-2-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:30:\"object_macscreen_1-2-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:32:\"object_macscreen_1-2-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:32:\"object_macscreen_1-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:33:\"object_macscreen_1-2-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:33:\"object_macscreen_1-2-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:34:\"object_macscreen_1-2-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"object_macscreen_1-2-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:32:\"object_macscreen_1-2-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:32:\"object_macscreen_1-2-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:32:\"object_macscreen_1-2-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:32:\"object_macscreen_1-2-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:32:\"object_macscreen_1-2-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:{}}}'),
(339, 106, '_wp_attached_file', 'revslider/object_plant_1.png');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(340, 106, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:28:\"revslider/object_plant_1.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"object_plant_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"object_plant_1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"object_plant_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"object_plant_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:27:\"object_plant_1-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:24:\"object_plant_1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:26:\"object_plant_1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:26:\"object_plant_1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:27:\"object_plant_1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:27:\"object_plant_1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:28:\"object_plant_1-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"object_plant_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"object_plant_1-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:26:\"object_plant_1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"object_plant_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"object_plant_1-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:26:\"object_plant_1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(341, 107, '_wp_attached_file', 'revslider/keyboard_apple.png'),
(342, 107, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1600;s:4:\"file\";s:28:\"revslider/keyboard_apple.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"keyboard_apple-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"keyboard_apple-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"keyboard_apple-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"keyboard_apple-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"keyboard_apple-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:27:\"keyboard_apple-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:24:\"keyboard_apple-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:26:\"keyboard_apple-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:26:\"keyboard_apple-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:27:\"keyboard_apple-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:27:\"keyboard_apple-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:28:\"keyboard_apple-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"keyboard_apple-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:26:\"keyboard_apple-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:26:\"keyboard_apple-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"keyboard_apple-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:26:\"keyboard_apple-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:26:\"keyboard_apple-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:{}}}'),
(343, 108, '_wp_attached_file', 'revslider/object_macmouse_1.png'),
(344, 108, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"revslider/object_macmouse_1.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"object_macmouse_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"object_macmouse_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"object_macmouse_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:30:\"object_macmouse_1-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:27:\"object_macmouse_1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:29:\"object_macmouse_1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:29:\"object_macmouse_1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:30:\"object_macmouse_1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:30:\"object_macmouse_1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"object_macmouse_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"object_macmouse_1-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:29:\"object_macmouse_1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"object_macmouse_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"object_macmouse_1-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:29:\"object_macmouse_1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(345, 109, '_wp_attached_file', 'revslider/object_glasses_2.png'),
(346, 109, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"revslider/object_glasses_2.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"object_glasses_2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"object_glasses_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"object_glasses_2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:29:\"object_glasses_2-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:26:\"object_glasses_2-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:28:\"object_glasses_2-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:28:\"object_glasses_2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:29:\"object_glasses_2-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:29:\"object_glasses_2-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"object_glasses_2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"object_glasses_2-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:28:\"object_glasses_2-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:28:\"object_glasses_2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"object_glasses_2-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:28:\"object_glasses_2-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:{}}}'),
(347, 110, '_wp_attached_file', 'revslider/object_macscreen_2.png'),
(348, 110, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:32:\"revslider/object_macscreen_2.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"object_macscreen_2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"object_macscreen_2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"object_macscreen_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"object_macscreen_2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"object_macscreen_2-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:31:\"object_macscreen_2-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:28:\"object_macscreen_2-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:30:\"object_macscreen_2-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:30:\"object_macscreen_2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:31:\"object_macscreen_2-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:31:\"object_macscreen_2-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:32:\"object_macscreen_2-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"object_macscreen_2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"object_macscreen_2-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:30:\"object_macscreen_2-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:30:\"object_macscreen_2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"object_macscreen_2-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:30:\"object_macscreen_2-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:{}}}'),
(349, 111, '_wp_attached_file', 'revslider/object_coffee_1.png'),
(350, 111, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:29:\"revslider/object_coffee_1.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"object_coffee_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"object_coffee_1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"object_coffee_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"object_coffee_1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:28:\"object_coffee_1-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:25:\"object_coffee_1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:27:\"object_coffee_1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:27:\"object_coffee_1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:28:\"object_coffee_1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:28:\"object_coffee_1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:29:\"object_coffee_1-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"object_coffee_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"object_coffee_1-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:27:\"object_coffee_1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"object_coffee_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"object_coffee_1-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:27:\"object_coffee_1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(351, 112, '_wp_attached_file', 'revslider/night.jpg'),
(352, 112, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:986;s:4:\"file\";s:19:\"revslider/night.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"night-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"night-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"night-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"night-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"night-1536x947.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:947;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:18:\"night-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:15:\"night-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:17:\"night-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:17:\"night-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:18:\"night-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:17:\"night-500x986.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:986;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:18:\"night-1000x986.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:986;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"night-300x300.jpg\";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:\"night-600x370.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"night-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:\"night-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:\"night-600x370.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"night-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:{}}}'),
(353, 113, '_wp_attached_file', 'revslider/tp_vid_clouds-1.jpg'),
(354, 113, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:29:\"revslider/tp_vid_clouds-1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"tp_vid_clouds-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"tp_vid_clouds-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"tp_vid_clouds-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"tp_vid_clouds-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"tp_vid_clouds-1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:28:\"tp_vid_clouds-1-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:25:\"tp_vid_clouds-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:27:\"tp_vid_clouds-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:27:\"tp_vid_clouds-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:28:\"tp_vid_clouds-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:28:\"tp_vid_clouds-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:29:\"tp_vid_clouds-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"tp_vid_clouds-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:27:\"tp_vid_clouds-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"tp_vid_clouds-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:27:\"tp_vid_clouds-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:27:\"tp_vid_clouds-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"tp_vid_clouds-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:{}}}'),
(355, 114, '_wp_attached_file', 'revslider/tp_vid_clouds-2.mp4'),
(356, 115, '_wp_attached_file', 'revslider/beforeafterslider/day.jpg'),
(357, 115, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:986;s:4:\"file\";s:35:\"revslider/beforeafterslider/day.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"day-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"day-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"day-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"day-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"day-1536x947.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:947;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:16:\"day-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:13:\"day-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:15:\"day-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:15:\"day-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:16:\"day-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:15:\"day-500x986.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:986;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:16:\"day-1000x986.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:986;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"day-300x300.jpg\";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:\"day-600x370.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"day-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:\"day-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:\"day-600x370.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"day-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:{}}}'),
(358, 116, '_wp_attached_file', 'revslider/before1-1.jpg'),
(359, 116, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"revslider/before1-1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"before1-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"before1-1-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"before1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"before1-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"before1-1-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:22:\"before1-1-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:19:\"before1-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:21:\"before1-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:21:\"before1-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:22:\"before1-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:22:\"before1-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:23:\"before1-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"before1-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:21:\"before1-1-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:21:\"before1-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:21:\"before1-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:21:\"before1-1-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:21:\"before1-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:{}}}'),
(360, 117, '_wp_attached_file', 'revslider/beforeafterslider/after1-1.jpg'),
(361, 117, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:40:\"revslider/beforeafterslider/after1-1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"after1-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"after1-1-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"after1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"after1-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"after1-1-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:21:\"after1-1-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"after1-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:20:\"after1-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:20:\"after1-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:21:\"after1-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:21:\"after1-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:22:\"after1-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"after1-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:20:\"after1-1-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:\"after1-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:20:\"after1-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:20:\"after1-1-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:\"after1-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:{}}}'),
(362, 118, '_wpb_shortcodes_custom_css', '.vc_custom_1481584236969{padding-top: 0px !important;padding-bottom: 150px !important;}'),
(379, 122, '_wp_attached_file', 'revslider/smoke_png4-1.png'),
(380, 122, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1167;s:4:\"file\";s:26:\"revslider/smoke_png4-1.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"smoke_png4-1-257x300.png\";s:5:\"width\";i:257;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"smoke_png4-1-877x1024.png\";s:5:\"width\";i:877;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"smoke_png4-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"smoke_png4-1-768x896.png\";s:5:\"width\";i:768;s:6:\"height\";i:896;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:25:\"smoke_png4-1-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:22:\"smoke_png4-1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:24:\"smoke_png4-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:24:\"smoke_png4-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:25:\"smoke_png4-1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:25:\"smoke_png4-1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:26:\"smoke_png4-1-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"smoke_png4-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"smoke_png4-1-600x700.png\";s:5:\"width\";i:600;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"smoke_png4-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"smoke_png4-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"smoke_png4-1-600x700.png\";s:5:\"width\";i:600;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"smoke_png4-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(381, 123, '_wp_attached_file', 'revslider/smoke_overlay.png'),
(382, 123, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:297;s:6:\"height\";i:192;s:4:\"file\";s:27:\"revslider/smoke_overlay.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"smoke_overlay-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:23:\"smoke_overlay-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"smoke_overlay-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:25:\"smoke_overlay-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:{}}}'),
(383, 125, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(384, 126, '_wp_attached_file', 'revslider/project-carousel/hq2.jpg'),
(385, 126, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1200;s:4:\"file\";s:34:\"revslider/project-carousel/hq2.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"hq2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"hq2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"hq2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"hq2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:15:\"hq2-900x563.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:13:\"hq2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:15:\"hq2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:15:\"hq2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:15:\"hq2-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:16:\"hq2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:16:\"hq2-900x1000.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"hq2-300x300.jpg\";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:\"hq2-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq2-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:\"hq2-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:\"hq2-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq2-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:{}}}'),
(386, 127, '_wp_attached_file', 'revslider/project-carousel/project1.jpg'),
(387, 127, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:267;s:6:\"height\";i:150;s:4:\"file\";s:39:\"revslider/project-carousel/project1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"project1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;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: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:{}}}'),
(388, 128, '_wp_attached_file', 'revslider/project-carousel/hq1.jpg'),
(389, 128, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1598;s:6:\"height\";i:1200;s:4:\"file\";s:34:\"revslider/project-carousel/hq1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"hq1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"hq1-1024x769.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"hq1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"hq1-768x577.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"hq1-1536x1153.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:16:\"hq1-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:13:\"hq1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:15:\"hq1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:15:\"hq1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:16:\"hq1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:16:\"hq1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:17:\"hq1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"hq1-300x300.jpg\";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:\"hq1-600x451.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq1-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:\"hq1-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:\"hq1-600x451.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq1-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:{}}}'),
(390, 129, '_wp_attached_file', 'revslider/project-carousel/project2.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(391, 129, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:267;s:6:\"height\";i:150;s:4:\"file\";s:39:\"revslider/project-carousel/project2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"project2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;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: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:{}}}'),
(392, 130, '_wp_attached_file', 'revslider/project-carousel/hq4.jpg'),
(393, 130, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1176;s:6:\"height\";i:1200;s:4:\"file\";s:34:\"revslider/project-carousel/hq4.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"hq4-294x300.jpg\";s:5:\"width\";i:294;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"hq4-1004x1024.jpg\";s:5:\"width\";i:1004;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"hq4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"hq4-768x784.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:16:\"hq4-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:13:\"hq4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:15:\"hq4-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:15:\"hq4-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:16:\"hq4-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:16:\"hq4-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:17:\"hq4-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"hq4-300x300.jpg\";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:\"hq4-600x612.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq4-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:\"hq4-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:\"hq4-600x612.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq4-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:{}}}'),
(394, 131, '_wp_attached_file', 'revslider/project-carousel/project3.jpg'),
(395, 131, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:267;s:6:\"height\";i:150;s:4:\"file\";s:39:\"revslider/project-carousel/project3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"project3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;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: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:{}}}'),
(396, 132, '_wp_attached_file', 'revslider/project-carousel/Asteroids.jpg'),
(397, 132, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:40:\"revslider/project-carousel/Asteroids.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Asteroids-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Asteroids-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Asteroids-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Asteroids-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"Asteroids-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:22:\"Asteroids-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:19:\"Asteroids-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:21:\"Asteroids-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:21:\"Asteroids-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:22:\"Asteroids-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:22:\"Asteroids-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:23:\"Asteroids-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"Asteroids-300x300.jpg\";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:\"Asteroids-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Asteroids-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:\"Asteroids-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:\"Asteroids-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Asteroids-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:{}}}'),
(398, 133, '_wp_attached_file', 'revslider/project-carousel/project4.jpg'),
(399, 133, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:267;s:6:\"height\";i:150;s:4:\"file\";s:39:\"revslider/project-carousel/project4.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"project4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;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: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:{}}}'),
(400, 134, '_wp_attached_file', 'revslider/project-carousel/hq5.jpg'),
(401, 134, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1019;s:6:\"height\";i:1200;s:4:\"file\";s:34:\"revslider/project-carousel/hq5.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"hq5-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"hq5-870x1024.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"hq5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"hq5-768x904.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:904;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:16:\"hq5-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:13:\"hq5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:15:\"hq5-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:15:\"hq5-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:16:\"hq5-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:16:\"hq5-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:17:\"hq5-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"hq5-300x300.jpg\";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:\"hq5-600x707.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq5-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:\"hq5-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:\"hq5-600x707.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq5-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:{}}}'),
(402, 135, '_wp_attached_file', 'revslider/project-carousel/project5.jpg'),
(403, 135, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:267;s:6:\"height\";i:150;s:4:\"file\";s:39:\"revslider/project-carousel/project5.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"project5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;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: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:{}}}'),
(404, 136, '_wp_attached_file', 'revslider/project-carousel/hq6.jpg'),
(405, 136, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:34:\"revslider/project-carousel/hq6.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"hq6-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"hq6-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"hq6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"hq6-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:15:\"hq6-800x563.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:13:\"hq6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:15:\"hq6-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:15:\"hq6-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:15:\"hq6-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:16:\"hq6-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:16:\"hq6-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"hq6-300x300.jpg\";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:\"hq6-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq6-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:\"hq6-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:\"hq6-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq6-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:{}}}'),
(406, 137, '_wp_attached_file', 'revslider/project-carousel/project6.jpg'),
(407, 137, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:267;s:6:\"height\";i:150;s:4:\"file\";s:39:\"revslider/project-carousel/project6.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"project6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;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: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:{}}}'),
(408, 138, '_wp_attached_file', 'revslider/project-carousel/hq3.jpg'),
(409, 138, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1743;s:6:\"height\";i:1200;s:4:\"file\";s:34:\"revslider/project-carousel/hq3.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"hq3-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"hq3-1024x705.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"hq3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"hq3-768x529.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"hq3-1536x1057.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1057;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:16:\"hq3-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:13:\"hq3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:15:\"hq3-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:15:\"hq3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:16:\"hq3-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:16:\"hq3-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:17:\"hq3-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"hq3-300x300.jpg\";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:\"hq3-600x413.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq3-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:\"hq3-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:\"hq3-600x413.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"hq3-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:{}}}'),
(410, 139, '_wp_attached_file', 'revslider/project-carousel/project7.jpg'),
(411, 139, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:267;s:6:\"height\";i:150;s:4:\"file\";s:39:\"revslider/project-carousel/project7.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"project7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"project7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;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: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:{}}}'),
(412, 140, '_wp_attached_file', 'revslider/Classic-Cars-Evolution/before-bg.jpg'),
(413, 140, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1103;s:4:\"file\";s:46:\"revslider/Classic-Cars-Evolution/before-bg.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"before-bg-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"before-bg-1024x588.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"before-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"before-bg-768x441.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"before-bg-1536x882.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:882;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:22:\"before-bg-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:19:\"before-bg-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:21:\"before-bg-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:21:\"before-bg-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:22:\"before-bg-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:22:\"before-bg-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:23:\"before-bg-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"before-bg-300x300.jpg\";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:\"before-bg-600x345.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"before-bg-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:\"before-bg-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:\"before-bg-600x345.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"before-bg-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:{}}}'),
(414, 141, '_wp_attached_file', 'revslider/Classic-Cars-Evolution/beforeafter-thumb.jpg'),
(415, 141, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:276;s:6:\"height\";i:150;s:4:\"file\";s:54:\"revslider/Classic-Cars-Evolution/beforeafter-thumb.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"beforeafter-thumb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:27:\"beforeafter-thumb-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"beforeafter-thumb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"beforeafter-thumb-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:{}}}'),
(416, 142, '_wp_attached_file', 'revslider/Classic-Cars-Evolution/before-car.png'),
(417, 142, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:290;s:4:\"file\";s:47:\"revslider/Classic-Cars-Evolution/before-car.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"before-car-300x87.png\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"before-car-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"before-car-768x223.png\";s:5:\"width\";i:768;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:20:\"before-car-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:22:\"before-car-600x290.png\";s:5:\"width\";i:600;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:22:\"before-car-500x290.png\";s:5:\"width\";i:500;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:22:\"before-car-500x290.png\";s:5:\"width\";i:500;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"before-car-300x290.png\";s:5:\"width\";i:300;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"before-car-600x174.png\";s:5:\"width\";i:600;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"before-car-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:22:\"before-car-300x290.png\";s:5:\"width\";i:300;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"before-car-600x174.png\";s:5:\"width\";i:600;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"before-car-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:{}}}'),
(418, 143, '_wp_attached_file', 'revslider/Classic-Cars-Evolution/after-car.png'),
(419, 143, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:287;s:4:\"file\";s:46:\"revslider/Classic-Cars-Evolution/after-car.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"after-car-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"after-car-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"after-car-768x220.png\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:19:\"after-car-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:21:\"after-car-600x287.png\";s:5:\"width\";i:600;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:21:\"after-car-500x287.png\";s:5:\"width\";i:500;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:21:\"after-car-500x287.png\";s:5:\"width\";i:500;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"after-car-300x287.png\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"after-car-600x172.png\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"after-car-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:\"after-car-300x287.png\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"after-car-600x172.png\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"after-car-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:{}}}'),
(420, 144, '_wp_attached_file', 'revslider/Classic-Cars-Evolution/after-bg.jpg'),
(421, 144, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1103;s:4:\"file\";s:45:\"revslider/Classic-Cars-Evolution/after-bg.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"after-bg-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"after-bg-1024x588.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"after-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"after-bg-768x441.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"after-bg-1536x882.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:882;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:21:\"after-bg-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"after-bg-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:20:\"after-bg-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:20:\"after-bg-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:21:\"after-bg-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:21:\"after-bg-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:22:\"after-bg-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"after-bg-300x300.jpg\";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:\"after-bg-600x345.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"after-bg-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:\"after-bg-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:\"after-bg-600x345.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"after-bg-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:{}}}'),
(422, 145, '_wp_attached_file', 'revslider/woman2.jpg'),
(423, 145, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"revslider/woman2.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"woman2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"woman2-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"woman2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"woman2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"woman2-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:19:\"woman2-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:16:\"woman2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:18:\"woman2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:18:\"woman2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:19:\"woman2-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:19:\"woman2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:20:\"woman2-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"woman2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"woman2-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"woman2-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:\"woman2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"woman2-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"woman2-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:{}}}'),
(424, 146, '_wp_attached_file', 'revslider/deskbg.jpg'),
(425, 146, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"revslider/deskbg.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"deskbg-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"deskbg-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"deskbg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"deskbg-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"deskbg-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:19:\"deskbg-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:16:\"deskbg-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:18:\"deskbg-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:18:\"deskbg-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:19:\"deskbg-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:19:\"deskbg-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:20:\"deskbg-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"deskbg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"deskbg-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"deskbg-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:\"deskbg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"deskbg-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"deskbg-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:{}}}'),
(426, 147, '_wp_attached_file', 'revslider/reachout_bg.jpg'),
(427, 147, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:25:\"revslider/reachout_bg.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"reachout_bg-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"reachout_bg-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"reachout_bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"reachout_bg-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"reachout_bg-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:24:\"reachout_bg-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:21:\"reachout_bg-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:23:\"reachout_bg-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:23:\"reachout_bg-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:24:\"reachout_bg-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:24:\"reachout_bg-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:25:\"reachout_bg-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"reachout_bg-300x300.jpg\";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:\"reachout_bg-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"reachout_bg-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:\"reachout_bg-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:\"reachout_bg-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"reachout_bg-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:{}}}'),
(428, 148, '_wp_attached_file', '2020/11/stickies-2852375__480.jpg'),
(429, 148, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:33:\"2020/11/stickies-2852375__480.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"stickies-2852375__480-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"stickies-2852375__480-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:31:\"stickies-2852375__480-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:33:\"stickies-2852375__480-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:33:\"stickies-2852375__480-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:33:\"stickies-2852375__480-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"stickies-2852375__480-300x300.jpg\";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:33:\"stickies-2852375__480-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:33:\"stickies-2852375__480-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:33:\"stickies-2852375__480-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:33:\"stickies-2852375__480-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:33:\"stickies-2852375__480-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:{}}}'),
(430, 149, '_wp_attached_file', '2020/11/Picture1.png');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(431, 149, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:945;s:6:\"height\";i:708;s:4:\"file\";s:20:\"2020/11/Picture1.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Picture1-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Picture1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Picture1-768x575.png\";s:5:\"width\";i:768;s:6:\"height\";i:575;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:20:\"Picture1-945x563.png\";s:5:\"width\";i:945;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"Picture1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:20:\"Picture1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:20:\"Picture1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:20:\"Picture1-945x500.png\";s:5:\"width\";i:945;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:20:\"Picture1-500x708.png\";s:5:\"width\";i:500;s:6:\"height\";i:708;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture1-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:20:\"Picture1-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:20:\"Picture1-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:20:\"Picture1-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:20:\"Picture1-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:20:\"Picture1-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:{}}}'),
(432, 150, '_wp_attached_file', '2020/11/Picture2.png'),
(433, 150, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:945;s:6:\"height\";i:708;s:4:\"file\";s:20:\"2020/11/Picture2.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Picture2-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Picture2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Picture2-768x575.png\";s:5:\"width\";i:768;s:6:\"height\";i:575;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:20:\"Picture2-945x563.png\";s:5:\"width\";i:945;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"Picture2-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:20:\"Picture2-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:20:\"Picture2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:20:\"Picture2-945x500.png\";s:5:\"width\";i:945;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:20:\"Picture2-500x708.png\";s:5:\"width\";i:500;s:6:\"height\";i:708;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture2-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:20:\"Picture2-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:20:\"Picture2-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:20:\"Picture2-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:20:\"Picture2-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:20:\"Picture2-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:{}}}'),
(434, 151, '_wp_attached_file', 'revslider/news1-1.jpg'),
(435, 151, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1278;s:4:\"file\";s:21:\"revslider/news1-1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"news1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"news1-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"news1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"news1-1-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"news1-1-1536x1022.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1022;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:20:\"news1-1-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:17:\"news1-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:19:\"news1-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:19:\"news1-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:20:\"news1-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:20:\"news1-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:21:\"news1-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"news1-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:19:\"news1-1-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"news1-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:19:\"news1-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:19:\"news1-1-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"news1-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:\"4\";s:6:\"credit\";s:16:\"Raymond Hennessy\";s:6:\"camera\";s:9:\"NIKON D4S\";s:7:\"caption\";s:75:\"A Red Fox curled up at dusk to sleep for the evening in a cold winter snow.\";s:17:\"created_timestamp\";s:10:\"1422465669\";s:9:\"copyright\";s:19:\"© Raymond Hennessy\";s:12:\"focal_length\";s:3:\"500\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:13:\"Curled Up Fox\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:16:{i:0;s:6:\"Animal\";i:1;s:23:\"Island Beach State Park\";i:2;s:7:\"Mammals\";i:3;s:5:\"black\";i:4;s:4:\"cold\";i:5;s:4:\"dusk\";i:6;s:3:\"fox\";i:7;s:3:\"fur\";i:8;s:4:\"late\";i:9;s:6:\"laying\";i:10;s:6:\"orange\";i:11;s:7:\"red fox\";i:12;s:4:\"snow\";i:13;s:5:\"white\";i:14;s:8:\"wildlife\";i:15;s:6:\"winter\";}}}'),
(436, 152, '_wp_attached_file', 'revslider/news2-1.jpg'),
(437, 152, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:21:\"revslider/news2-1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"news2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"news2-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"news2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"news2-1-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:21:\"news2-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:20:\"news2-1-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:17:\"news2-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:19:\"news2-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:19:\"news2-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:20:\"news2-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:20:\"news2-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:21:\"news2-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"news2-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:19:\"news2-1-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:19:\"news2-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:19:\"news2-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:19:\"news2-1-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:19:\"news2-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:{}}}'),
(438, 153, '_wp_attached_file', 'revslider/news3-2.jpg'),
(439, 153, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"revslider/news3-2.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"news3-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"news3-2-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"news3-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"news3-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"news3-2-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:20:\"news3-2-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:17:\"news3-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:19:\"news3-2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:19:\"news3-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:20:\"news3-2-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:20:\"news3-2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:21:\"news3-2-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"news3-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"news3-2-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"news3-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"news3-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"news3-2-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"news3-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1396664974\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(440, 154, '_wp_attached_file', 'revslider/youtubecover-1.jpg'),
(441, 154, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:28:\"revslider/youtubecover-1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"youtubecover-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"youtubecover-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"youtubecover-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"youtubecover-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"youtubecover-1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:27:\"youtubecover-1-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:24:\"youtubecover-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:26:\"youtubecover-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:26:\"youtubecover-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:27:\"youtubecover-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:27:\"youtubecover-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:28:\"youtubecover-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"youtubecover-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:26:\"youtubecover-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"youtubecover-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:26:\"youtubecover-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:26:\"youtubecover-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"youtubecover-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:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1396664974\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(442, 155, '_wp_attached_file', '2020/11/pexels-photo-1722072.jpeg'),
(443, 155, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:33:\"2020/11/pexels-photo-1722072.jpeg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"pexels-photo-1722072-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"pexels-photo-1722072-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-1722072-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"pexels-photo-1722072-768x1152.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:34:\"pexels-photo-1722072-1000x563.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:31:\"pexels-photo-1722072-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:33:\"pexels-photo-1722072-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:33:\"pexels-photo-1722072-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:34:\"pexels-photo-1722072-1000x500.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:34:\"pexels-photo-1722072-500x1000.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:35:\"pexels-photo-1722072-1000x1000.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"pexels-photo-1722072-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"pexels-photo-1722072-600x900.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-1722072-100x100.jpeg\";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:33:\"pexels-photo-1722072-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"pexels-photo-1722072-600x900.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-1722072-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(444, 156, '_wp_attached_file', '2020/11/pexels-photo-4856376.jpeg'),
(445, 156, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1333;s:4:\"file\";s:33:\"2020/11/pexels-photo-4856376.jpeg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"pexels-photo-4856376-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"pexels-photo-4856376-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-4856376-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"pexels-photo-4856376-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:34:\"pexels-photo-4856376-1000x563.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:31:\"pexels-photo-4856376-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:33:\"pexels-photo-4856376-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:33:\"pexels-photo-4856376-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:34:\"pexels-photo-4856376-1000x500.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:34:\"pexels-photo-4856376-500x1000.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:35:\"pexels-photo-4856376-1000x1000.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"pexels-photo-4856376-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"pexels-photo-4856376-600x800.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-4856376-100x100.jpeg\";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:33:\"pexels-photo-4856376-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"pexels-photo-4856376-600x800.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-4856376-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(446, 157, '_wp_attached_file', '2020/11/concept-4455115__480.jpg'),
(447, 157, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:768;s:6:\"height\";i:480;s:4:\"file\";s:32:\"2020/11/concept-4455115__480.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"concept-4455115__480-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"concept-4455115__480-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:30:\"concept-4455115__480-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:32:\"concept-4455115__480-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:32:\"concept-4455115__480-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:32:\"concept-4455115__480-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"concept-4455115__480-300x300.jpg\";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:\"concept-4455115__480-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:32:\"concept-4455115__480-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:\"concept-4455115__480-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:\"concept-4455115__480-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:32:\"concept-4455115__480-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:{}}}'),
(448, 158, '_wp_attached_file', '2020/11/smart-4168483__480.jpg'),
(449, 158, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:758;s:6:\"height\";i:480;s:4:\"file\";s:30:\"2020/11/smart-4168483__480.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"smart-4168483__480-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"smart-4168483__480-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:28:\"smart-4168483__480-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:30:\"smart-4168483__480-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:30:\"smart-4168483__480-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:30:\"smart-4168483__480-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"smart-4168483__480-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"smart-4168483__480-600x380.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"smart-4168483__480-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:30:\"smart-4168483__480-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"smart-4168483__480-600x380.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"smart-4168483__480-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:{}}}'),
(450, 159, '_wp_attached_file', '2020/11/virus-5675422__480.jpg'),
(451, 159, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:30:\"2020/11/virus-5675422__480.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"virus-5675422__480-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"virus-5675422__480-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:28:\"virus-5675422__480-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:30:\"virus-5675422__480-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:30:\"virus-5675422__480-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:30:\"virus-5675422__480-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"virus-5675422__480-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"virus-5675422__480-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:30:\"virus-5675422__480-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:30:\"virus-5675422__480-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"virus-5675422__480-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:30:\"virus-5675422__480-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:{}}}'),
(452, 160, '_wp_attached_file', '2020/11/beach-5377244__480.jpg'),
(453, 160, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:30:\"2020/11/beach-5377244__480.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"beach-5377244__480-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"beach-5377244__480-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:28:\"beach-5377244__480-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:30:\"beach-5377244__480-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:30:\"beach-5377244__480-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:30:\"beach-5377244__480-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"beach-5377244__480-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"beach-5377244__480-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:30:\"beach-5377244__480-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:30:\"beach-5377244__480-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"beach-5377244__480-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:30:\"beach-5377244__480-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:{}}}'),
(456, 162, '_wp_attached_file', '2020/11/education-4317851_1280-1.jpg'),
(457, 162, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:848;s:4:\"file\";s:36:\"2020/11/education-4317851_1280-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"education-4317851_1280-1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"education-4317851_1280-1-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"education-4317851_1280-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"education-4317851_1280-1-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:37:\"education-4317851_1280-1-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:34:\"education-4317851_1280-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:36:\"education-4317851_1280-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:36:\"education-4317851_1280-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:37:\"education-4317851_1280-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:36:\"education-4317851_1280-1-500x848.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:37:\"education-4317851_1280-1-1000x848.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"education-4317851_1280-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:36:\"education-4317851_1280-1-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"education-4317851_1280-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:36:\"education-4317851_1280-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:36:\"education-4317851_1280-1-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"education-4317851_1280-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:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(458, 163, '_wp_attached_file', '2020/11/20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1.jpg'),
(459, 163, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:514;s:4:\"file\";s:94:\"2020/11/20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-300x151.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-768x386.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:386;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:95:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-1000x514.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:92:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:95:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-500x514.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:95:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-1000x514.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-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:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-600x301.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-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:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-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:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1-600x301.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:94:\"20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-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:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1517382882\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:3:{i:0;s:29:\"Health and Knowledge Precinct\";i:1;s:9:\"Southport\";i:2;s:16:\"athletes village\";}}}'),
(460, 167, '_wpb_shortcodes_custom_css', '.vc_custom_1481584236969{padding-top: 0px !important;padding-bottom: 150px !important;}'),
(461, 168, '_wpb_shortcodes_custom_css', '.vc_custom_1605174413682{padding-top: 0px !important;padding-bottom: 150px !important;background-color: __USE_THEME_MAIN_COLOR__ !important;}'),
(462, 24, '_oembed_71ae0db7f6e61ffd19b757ea6a0c207c', '<iframe title=\"Timelapse - Lighthouse (Oct 2012)\" src=\"https://player.vimeo.com/video/51589652?dnt=1&amp;app_id=122963\" width=\"500\" height=\"281\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),
(463, 24, '_oembed_time_71ae0db7f6e61ffd19b757ea6a0c207c', '1605176009'),
(464, 24, '_oembed_a71405c89296a955e0fedb8b3cfb1189', '<iframe title=\"Big Buck Bunny\" src=\"https://player.vimeo.com/video/1084537?dnt=1&amp;app_id=122963\" width=\"500\" height=\"281\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),
(465, 24, '_oembed_time_a71405c89296a955e0fedb8b3cfb1189', '1605176088'),
(466, 24, '_oembed_8ca0cd3c26d0130763c5b5abb5269a14', '{{unknown}}'),
(467, 24, '_oembed_615ba8488bff31383c2d2a92e45de46b', '<iframe title=\"&amp;quot;Legend Of The Golden Egg Warrior&amp;quot;\" src=\"https://player.vimeo.com/video/22721995?dnt=1&amp;app_id=122963\" width=\"500\" height=\"281\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),
(468, 24, '_oembed_time_615ba8488bff31383c2d2a92e45de46b', '1605176089'),
(469, 24, '_oembed_9cebe9e637ddb4d9425207707a652749', '<iframe title=\"Bunny Bay\" src=\"https://player.vimeo.com/video/30895516?dnt=1&amp;app_id=122963\" width=\"500\" height=\"281\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),
(470, 24, '_oembed_time_9cebe9e637ddb4d9425207707a652749', '1605176089'),
(471, 24, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605957126547{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(472, 24, '_wpb_vc_js_status', 'true'),
(473, 170, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(474, 24, 'posts_add_category_filter_value', 'no'),
(475, 24, 'posts_add_category_filter_counter_value', 'yes'),
(476, 24, 'posts_filter_orderby_value', 'date'),
(477, 24, 'posts_filter_order_value', 'desc'),
(478, 24, 'maple_enable_custom_header_options_value', 'no'),
(479, 24, 'maple_enable_website_loading_value', 'off'),
(480, 24, 'maple_content_to_the_top_value', 'on'),
(481, 24, 'maple_custom_header_pre_value', 'light'),
(482, 24, 'maple_custom_header_after_value', 'light'),
(483, 24, 'maple_enable_custom_pagetitle_options_value', 'no'),
(484, 24, 'maple_header_type_value', 'image'),
(485, 24, 'maple_pagetitle_image_parallax_value', 'off'),
(486, 24, 'maple_pagetitle_image_overlay_value', 'off'),
(487, 24, 'maple_pagetitle_overlay_type_value', 'color'),
(488, 24, 'maple_pagetitle_overlay_color_value', '212121'),
(489, 24, 'maple_pagetitle_overlay_pattern_value', 'none'),
(490, 24, 'maple_pagetitle_overlay_opacity_value', '100%'),
(491, 24, 'maple_header_color_opacity_value', '100'),
(492, 24, 'maple_header_pattern_value', 'none'),
(493, 24, 'maple_banner_slider_value', '-1'),
(494, 24, 'maple_page_title_padding_value', '140px');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(495, 24, 'maple_header_text_alignment_value', 'center'),
(496, 24, 'maple_hide_pagetitle_value', 'yes'),
(497, 24, 'maple_header_text_font_value', 'Helvetica Neue'),
(498, 24, 'maple_header_text_color_value', 'f2f2f2'),
(499, 24, 'maple_header_text_size_value', '42px'),
(500, 24, 'maple_header_text_margin_top_value', '40px'),
(501, 24, 'maple_hide_sec_pagetitle_value', 'no'),
(502, 24, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(503, 24, 'maple_secondary_title_text_color_value', '949494'),
(504, 24, 'maple_secondary_title_text_size_value', '19px'),
(505, 24, 'maple_header_secondary_text_margin_top_value', '15px'),
(506, 24, 'maple_enable_breadcrumbs_value', 'yes'),
(507, 24, 'maple_breadcrumbs_margin_top_value', '30px'),
(508, 24, 'sidebar_for_default_value', 'none'),
(509, 24, 'sidebars_available_value', 'defaultblogsidebar'),
(510, 172, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(511, 173, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(513, 175, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(514, 182, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(515, 186, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(561, 195, '_wpb_shortcodes_custom_css', '.vc_custom_1605184057788{padding-top: 0px !important;padding-bottom: 150px !important;}.vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}'),
(562, 196, '_wpb_shortcodes_custom_css', '.vc_custom_1605184254528{padding-top: 0px !important;padding-bottom: 150px !important;}.vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}'),
(563, 197, '_wp_attached_file', '2020/11/pexels-photo-2990641.jpeg'),
(564, 197, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:33:\"2020/11/pexels-photo-2990641.jpeg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"pexels-photo-2990641-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-2990641-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"pexels-photo-2990641-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:34:\"pexels-photo-2990641-1000x563.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:31:\"pexels-photo-2990641-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:33:\"pexels-photo-2990641-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:33:\"pexels-photo-2990641-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:34:\"pexels-photo-2990641-1000x500.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:33:\"pexels-photo-2990641-500x667.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"pexels-photo-2990641-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"pexels-photo-2990641-600x400.jpeg\";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:33:\"pexels-photo-2990641-100x100.jpeg\";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:33:\"pexels-photo-2990641-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"pexels-photo-2990641-600x400.jpeg\";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:33:\"pexels-photo-2990641-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(565, 198, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-02-at-20.01.29.png'),
(566, 198, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1694;s:6:\"height\";i:328;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-02-at-20.01.29.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-02-at-20.01.29-300x58.png\";s:5:\"width\";i:300;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-02-at-20.01.29-1024x198.png\";s:5:\"width\";i:1024;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-02-at-20.01.29-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-02-at-20.01.29-768x149.png\";s:5:\"width\";i:768;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-02-at-20.01.29-1536x297.png\";s:5:\"width\";i:1536;s:6:\"height\";i:297;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-02-at-20.01.29-1000x328.png\";s:5:\"width\";i:1000;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-02-at-20.01.29-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-02-at-20.01.29-600x328.png\";s:5:\"width\";i:600;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-02-at-20.01.29-500x328.png\";s:5:\"width\";i:500;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-02-at-20.01.29-1000x328.png\";s:5:\"width\";i:1000;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-02-at-20.01.29-500x328.png\";s:5:\"width\";i:500;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-02-at-20.01.29-1000x328.png\";s:5:\"width\";i:1000;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-02-at-20.01.29-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:46:\"Screen-Shot-2020-11-02-at-20.01.29-600x116.png\";s:5:\"width\";i:600;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-02-at-20.01.29-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:46:\"Screen-Shot-2020-11-02-at-20.01.29-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:46:\"Screen-Shot-2020-11-02-at-20.01.29-600x116.png\";s:5:\"width\";i:600;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-02-at-20.01.29-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:{}}}'),
(567, 199, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(568, 200, '_wp_attached_file', '2020/11/sohail_edited.jpg'),
(569, 200, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:245;s:6:\"height\";i:221;s:4:\"file\";s:25:\"2020/11/sohail_edited.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"sohail_edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:23:\"sohail_edited-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"sohail_edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"sohail_edited-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:{}}}'),
(570, 201, '_wp_attached_file', '2020/11/47319218_590029488118783_8234075506186649600_n.png'),
(571, 201, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:58:\"2020/11/47319218_590029488118783_8234075506186649600_n.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"47319218_590029488118783_8234075506186649600_n-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"47319218_590029488118783_8234075506186649600_n-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"47319218_590029488118783_8234075506186649600_n-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"47319218_590029488118783_8234075506186649600_n-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:59:\"47319218_590029488118783_8234075506186649600_n-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:59:\"47319218_590029488118783_8234075506186649600_n-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:56:\"47319218_590029488118783_8234075506186649600_n-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:58:\"47319218_590029488118783_8234075506186649600_n-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:58:\"47319218_590029488118783_8234075506186649600_n-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:59:\"47319218_590029488118783_8234075506186649600_n-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"47319218_590029488118783_8234075506186649600_n-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:60:\"47319218_590029488118783_8234075506186649600_n-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:58:\"47319218_590029488118783_8234075506186649600_n-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:58:\"47319218_590029488118783_8234075506186649600_n-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:58:\"47319218_590029488118783_8234075506186649600_n-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:58:\"47319218_590029488118783_8234075506186649600_n-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:58:\"47319218_590029488118783_8234075506186649600_n-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:58:\"47319218_590029488118783_8234075506186649600_n-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:{}}}'),
(572, 202, '_wp_attached_file', '2020/11/39894601_2146347495613377_8136673121156464640_n.png'),
(573, 202, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:59:\"2020/11/39894601_2146347495613377_8136673121156464640_n.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"39894601_2146347495613377_8136673121156464640_n-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"39894601_2146347495613377_8136673121156464640_n-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"39894601_2146347495613377_8136673121156464640_n-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"39894601_2146347495613377_8136673121156464640_n-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"39894601_2146347495613377_8136673121156464640_n-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"39894601_2146347495613377_8136673121156464640_n-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"39894601_2146347495613377_8136673121156464640_n-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"39894601_2146347495613377_8136673121156464640_n-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"39894601_2146347495613377_8136673121156464640_n-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"39894601_2146347495613377_8136673121156464640_n-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"39894601_2146347495613377_8136673121156464640_n-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"39894601_2146347495613377_8136673121156464640_n-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"39894601_2146347495613377_8136673121156464640_n-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:59:\"39894601_2146347495613377_8136673121156464640_n-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"39894601_2146347495613377_8136673121156464640_n-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:59:\"39894601_2146347495613377_8136673121156464640_n-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:59:\"39894601_2146347495613377_8136673121156464640_n-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"39894601_2146347495613377_8136673121156464640_n-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:{}}}'),
(574, 203, '_wp_attached_file', '2020/11/39515534_307601786662565_527945518987345920_n-e1605275868433.png'),
(575, 203, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:983;s:4:\"file\";s:72:\"2020/11/39515534_307601786662565_527945518987345920_n-e1605275868433.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:73:\"39515534_307601786662565_527945518987345920_n-e1605275868433-1024x492.png\";s:5:\"width\";i:1024;s:6:\"height\";i:492;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-768x369.png\";s:5:\"width\";i:768;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:73:\"39515534_307601786662565_527945518987345920_n-e1605275868433-1536x737.png\";s:5:\"width\";i:1536;s:6:\"height\";i:737;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:73:\"39515534_307601786662565_527945518987345920_n-e1605275868433-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:70:\"39515534_307601786662565_527945518987345920_n-e1605275868433-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:73:\"39515534_307601786662565_527945518987345920_n-e1605275868433-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-500x983.png\";s:5:\"width\";i:500;s:6:\"height\";i:983;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:73:\"39515534_307601786662565_527945518987345920_n-e1605275868433-1000x983.png\";s:5:\"width\";i:1000;s:6:\"height\";i:983;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:4:{s:4:\"file\";s:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-600x288.png\";s:5:\"width\";i:600;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-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:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-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:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-600x288.png\";s:5:\"width\";i:600;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:72:\"39515534_307601786662565_527945518987345920_n-e1605275868433-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:{}}}'),
(576, 204, '_wp_attached_file', '2020/11/36285887_2181470388536946_659025902226636800_n.png'),
(577, 204, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:853;s:6:\"height\";i:480;s:4:\"file\";s:58:\"2020/11/36285887_2181470388536946_659025902226636800_n.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"36285887_2181470388536946_659025902226636800_n-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"36285887_2181470388536946_659025902226636800_n-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"36285887_2181470388536946_659025902226636800_n-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:56:\"36285887_2181470388536946_659025902226636800_n-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:58:\"36285887_2181470388536946_659025902226636800_n-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:58:\"36285887_2181470388536946_659025902226636800_n-500x480.png\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:58:\"36285887_2181470388536946_659025902226636800_n-500x480.png\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:58:\"36285887_2181470388536946_659025902226636800_n-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:58:\"36285887_2181470388536946_659025902226636800_n-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:58:\"36285887_2181470388536946_659025902226636800_n-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:58:\"36285887_2181470388536946_659025902226636800_n-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:58:\"36285887_2181470388536946_659025902226636800_n-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:58:\"36285887_2181470388536946_659025902226636800_n-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:{}}}'),
(578, 205, '_wp_attached_file', '2020/11/16788231_1592393807444610_822526208_n.jpg'),
(579, 205, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:49:\"2020/11/16788231_1592393807444610_822526208_n.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"16788231_1592393807444610_822526208_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"16788231_1592393807444610_822526208_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"16788231_1592393807444610_822526208_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:49:\"16788231_1592393807444610_822526208_n-960x563.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:47:\"16788231_1592393807444610_822526208_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:49:\"16788231_1592393807444610_822526208_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:49:\"16788231_1592393807444610_822526208_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:49:\"16788231_1592393807444610_822526208_n-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:49:\"16788231_1592393807444610_822526208_n-500x720.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"16788231_1592393807444610_822526208_n-300x300.jpg\";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:49:\"16788231_1592393807444610_822526208_n-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:49:\"16788231_1592393807444610_822526208_n-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:49:\"16788231_1592393807444610_822526208_n-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:49:\"16788231_1592393807444610_822526208_n-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:49:\"16788231_1592393807444610_822526208_n-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:{}}}'),
(580, 206, '_wp_attached_file', '2020/11/16830605_1592394960777828_161116981_n.jpg'),
(581, 206, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:49:\"2020/11/16830605_1592394960777828_161116981_n.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"16830605_1592394960777828_161116981_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"16830605_1592394960777828_161116981_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"16830605_1592394960777828_161116981_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:49:\"16830605_1592394960777828_161116981_n-960x563.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:47:\"16830605_1592394960777828_161116981_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:49:\"16830605_1592394960777828_161116981_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:49:\"16830605_1592394960777828_161116981_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:49:\"16830605_1592394960777828_161116981_n-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:49:\"16830605_1592394960777828_161116981_n-500x720.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"16830605_1592394960777828_161116981_n-300x300.jpg\";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:49:\"16830605_1592394960777828_161116981_n-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:49:\"16830605_1592394960777828_161116981_n-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:49:\"16830605_1592394960777828_161116981_n-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:49:\"16830605_1592394960777828_161116981_n-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:49:\"16830605_1592394960777828_161116981_n-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:{}}}'),
(582, 207, '_wp_attached_file', '2020/11/20604369_10155647121778420_4263630228007357246_n.jpg'),
(583, 207, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:60:\"2020/11/20604369_10155647121778420_4263630228007357246_n.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"20604369_10155647121778420_4263630228007357246_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"20604369_10155647121778420_4263630228007357246_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"20604369_10155647121778420_4263630228007357246_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"20604369_10155647121778420_4263630228007357246_n-960x563.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:58:\"20604369_10155647121778420_4263630228007357246_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:60:\"20604369_10155647121778420_4263630228007357246_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:60:\"20604369_10155647121778420_4263630228007357246_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"20604369_10155647121778420_4263630228007357246_n-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"20604369_10155647121778420_4263630228007357246_n-500x720.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"20604369_10155647121778420_4263630228007357246_n-300x300.jpg\";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:60:\"20604369_10155647121778420_4263630228007357246_n-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:60:\"20604369_10155647121778420_4263630228007357246_n-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:60:\"20604369_10155647121778420_4263630228007357246_n-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:60:\"20604369_10155647121778420_4263630228007357246_n-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:60:\"20604369_10155647121778420_4263630228007357246_n-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:{}}}'),
(584, 208, '_wp_attached_file', '2020/11/37013521_2208135712537080_5021252356017225728_n.jpg'),
(585, 208, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:59:\"2020/11/37013521_2208135712537080_5021252356017225728_n.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"37013521_2208135712537080_5021252356017225728_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"37013521_2208135712537080_5021252356017225728_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"37013521_2208135712537080_5021252356017225728_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"37013521_2208135712537080_5021252356017225728_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"37013521_2208135712537080_5021252356017225728_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"37013521_2208135712537080_5021252356017225728_n-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"37013521_2208135712537080_5021252356017225728_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"37013521_2208135712537080_5021252356017225728_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"37013521_2208135712537080_5021252356017225728_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"37013521_2208135712537080_5021252356017225728_n-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"37013521_2208135712537080_5021252356017225728_n-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"37013521_2208135712537080_5021252356017225728_n-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"37013521_2208135712537080_5021252356017225728_n-300x300.jpg\";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:59:\"37013521_2208135712537080_5021252356017225728_n-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:59:\"37013521_2208135712537080_5021252356017225728_n-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:59:\"37013521_2208135712537080_5021252356017225728_n-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:59:\"37013521_2208135712537080_5021252356017225728_n-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:59:\"37013521_2208135712537080_5021252356017225728_n-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:{}}}'),
(586, 209, '_wp_attached_file', '2020/11/38854596_2179926098920639_5832582175131697152_n.jpg'),
(587, 209, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:59:\"2020/11/38854596_2179926098920639_5832582175131697152_n.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"38854596_2179926098920639_5832582175131697152_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"38854596_2179926098920639_5832582175131697152_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"38854596_2179926098920639_5832582175131697152_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"38854596_2179926098920639_5832582175131697152_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"38854596_2179926098920639_5832582175131697152_n-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"38854596_2179926098920639_5832582175131697152_n-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"38854596_2179926098920639_5832582175131697152_n-300x300.jpg\";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:59:\"38854596_2179926098920639_5832582175131697152_n-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:59:\"38854596_2179926098920639_5832582175131697152_n-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:59:\"38854596_2179926098920639_5832582175131697152_n-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:59:\"38854596_2179926098920639_5832582175131697152_n-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:59:\"38854596_2179926098920639_5832582175131697152_n-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:{}}}'),
(588, 210, '_wp_attached_file', '2020/11/Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1.png'),
(589, 210, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:60:\"2020/11/Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:61:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:58:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:61:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:61:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:62:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:60:\"Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(590, 211, '_wp_attached_file', '2020/11/gold-coast-sept-10-breakout.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(591, 211, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:700;s:6:\"height\";i:425;s:4:\"file\";s:39:\"2020/11/gold-coast-sept-10-breakout.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"gold-coast-sept-10-breakout-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"gold-coast-sept-10-breakout-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:37:\"gold-coast-sept-10-breakout-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:39:\"gold-coast-sept-10-breakout-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:39:\"gold-coast-sept-10-breakout-500x425.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:39:\"gold-coast-sept-10-breakout-500x425.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"gold-coast-sept-10-breakout-300x300.jpg\";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:39:\"gold-coast-sept-10-breakout-600x364.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"gold-coast-sept-10-breakout-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:39:\"gold-coast-sept-10-breakout-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:39:\"gold-coast-sept-10-breakout-600x364.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"gold-coast-sept-10-breakout-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:{}}}'),
(592, 212, '_wp_attached_file', '2020/11/Executive-Half-day-Forum-UCC-Brisbane-1.jpg'),
(593, 212, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:51:\"2020/11/Executive-Half-day-Forum-UCC-Brisbane-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Executive-Half-day-Forum-UCC-Brisbane-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Executive-Half-day-Forum-UCC-Brisbane-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"Executive-Half-day-Forum-UCC-Brisbane-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:51:\"Executive-Half-day-Forum-UCC-Brisbane-1-960x563.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:49:\"Executive-Half-day-Forum-UCC-Brisbane-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:51:\"Executive-Half-day-Forum-UCC-Brisbane-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:51:\"Executive-Half-day-Forum-UCC-Brisbane-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:51:\"Executive-Half-day-Forum-UCC-Brisbane-1-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:51:\"Executive-Half-day-Forum-UCC-Brisbane-1-500x720.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"Executive-Half-day-Forum-UCC-Brisbane-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:51:\"Executive-Half-day-Forum-UCC-Brisbane-1-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:51:\"Executive-Half-day-Forum-UCC-Brisbane-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:51:\"Executive-Half-day-Forum-UCC-Brisbane-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:51:\"Executive-Half-day-Forum-UCC-Brisbane-1-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:51:\"Executive-Half-day-Forum-UCC-Brisbane-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:{}}}'),
(594, 213, '_wp_attached_file', '2020/11/Radio-Interview-4EB.jpg'),
(595, 213, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:31:\"2020/11/Radio-Interview-4EB.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Radio-Interview-4EB-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Radio-Interview-4EB-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Radio-Interview-4EB-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:31:\"Radio-Interview-4EB-960x563.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:29:\"Radio-Interview-4EB-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:31:\"Radio-Interview-4EB-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:31:\"Radio-Interview-4EB-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:31:\"Radio-Interview-4EB-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:31:\"Radio-Interview-4EB-500x720.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Radio-Interview-4EB-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"Radio-Interview-4EB-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:31:\"Radio-Interview-4EB-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:31:\"Radio-Interview-4EB-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"Radio-Interview-4EB-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:31:\"Radio-Interview-4EB-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:{}}}'),
(596, 214, '_wp_attached_file', '2020/11/licensed-image_surfers-scaled.jpg'),
(597, 214, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1919;s:4:\"file\";s:41:\"2020/11/licensed-image_surfers-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"licensed-image_surfers-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"licensed-image_surfers-1024x767.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"licensed-image_surfers-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"licensed-image_surfers-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"licensed-image_surfers-1536x1151.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"licensed-image_surfers-2048x1535.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:35:\"licensed-image_surfers-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:32:\"licensed-image_surfers-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:34:\"licensed-image_surfers-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:34:\"licensed-image_surfers-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:35:\"licensed-image_surfers-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:35:\"licensed-image_surfers-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:36:\"licensed-image_surfers-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"licensed-image_surfers-300x300.jpg\";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:34:\"licensed-image_surfers-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:34:\"licensed-image_surfers-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:34:\"licensed-image_surfers-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:34:\"licensed-image_surfers-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:34:\"licensed-image_surfers-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:{}}s:14:\"original_image\";s:26:\"licensed-image_surfers.jpg\";}'),
(598, 215, '_wp_attached_file', '2020/11/edited.png'),
(599, 215, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:958;s:6:\"height\";i:238;s:4:\"file\";s:18:\"2020/11/edited.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"edited-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"edited-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"edited-768x191.png\";s:5:\"width\";i:768;s:6:\"height\";i:191;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:16:\"edited-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:18:\"edited-600x238.png\";s:5:\"width\";i:600;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:18:\"edited-500x238.png\";s:5:\"width\";i:500;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:18:\"edited-500x238.png\";s:5:\"width\";i:500;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"edited-300x238.png\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"edited-600x149.png\";s:5:\"width\";i:600;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"edited-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:\"edited-300x238.png\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"edited-600x149.png\";s:5:\"width\";i:600;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"edited-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:{}}}'),
(600, 216, '_wp_attached_file', '2020/11/28822633_562335174124393_1616140708_o-1-scaled.jpg'),
(601, 216, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:58:\"2020/11/28822633_562335174124393_1616140708_o-1-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"28822633_562335174124393_1616140708_o-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"28822633_562335174124393_1616140708_o-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"28822633_562335174124393_1616140708_o-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"28822633_562335174124393_1616140708_o-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"28822633_562335174124393_1616140708_o-1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"28822633_562335174124393_1616140708_o-1-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:52:\"28822633_562335174124393_1616140708_o-1-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:49:\"28822633_562335174124393_1616140708_o-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:51:\"28822633_562335174124393_1616140708_o-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:51:\"28822633_562335174124393_1616140708_o-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:52:\"28822633_562335174124393_1616140708_o-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:52:\"28822633_562335174124393_1616140708_o-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:53:\"28822633_562335174124393_1616140708_o-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"28822633_562335174124393_1616140708_o-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:51:\"28822633_562335174124393_1616140708_o-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:51:\"28822633_562335174124393_1616140708_o-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:51:\"28822633_562335174124393_1616140708_o-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:51:\"28822633_562335174124393_1616140708_o-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:51:\"28822633_562335174124393_1616140708_o-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:{}}s:14:\"original_image\";s:43:\"28822633_562335174124393_1616140708_o-1.jpg\";}'),
(602, 217, '_wp_attached_file', '2020/11/Screen-Shot-2018-07-28-at-08.02.35.png'),
(603, 217, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2582;s:6:\"height\";i:1780;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2018-07-28-at-08.02.35.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2018-07-28-at-08.02.35-300x207.png\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2018-07-28-at-08.02.35-1024x706.png\";s:5:\"width\";i:1024;s:6:\"height\";i:706;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2018-07-28-at-08.02.35-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2018-07-28-at-08.02.35-768x529.png\";s:5:\"width\";i:768;s:6:\"height\";i:529;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2018-07-28-at-08.02.35-1536x1059.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1059;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2018-07-28-at-08.02.35-2048x1412.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1412;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2018-07-28-at-08.02.35-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2018-07-28-at-08.02.35-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2018-07-28-at-08.02.35-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2018-07-28-at-08.02.35-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2018-07-28-at-08.02.35-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2018-07-28-at-08.02.35-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2018-07-28-at-08.02.35-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2018-07-28-at-08.02.35-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:46:\"Screen-Shot-2018-07-28-at-08.02.35-600x414.png\";s:5:\"width\";i:600;s:6:\"height\";i:414;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2018-07-28-at-08.02.35-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:46:\"Screen-Shot-2018-07-28-at-08.02.35-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:46:\"Screen-Shot-2018-07-28-at-08.02.35-600x414.png\";s:5:\"width\";i:600;s:6:\"height\";i:414;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2018-07-28-at-08.02.35-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:{}}}'),
(604, 218, '_wp_attached_file', '2020/11/Professor-Sohail-Inayatullah-1.jpeg'),
(605, 218, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2219;s:6:\"height\";i:1372;s:4:\"file\";s:43:\"2020/11/Professor-Sohail-Inayatullah-1.jpeg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Professor-Sohail-Inayatullah-1-300x185.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Professor-Sohail-Inayatullah-1-1024x633.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Professor-Sohail-Inayatullah-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Professor-Sohail-Inayatullah-1-768x475.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"Professor-Sohail-Inayatullah-1-1536x950.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:950;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"Professor-Sohail-Inayatullah-1-2048x1266.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:44:\"Professor-Sohail-Inayatullah-1-1000x563.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:41:\"Professor-Sohail-Inayatullah-1-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:43:\"Professor-Sohail-Inayatullah-1-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:43:\"Professor-Sohail-Inayatullah-1-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:44:\"Professor-Sohail-Inayatullah-1-1000x500.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:44:\"Professor-Sohail-Inayatullah-1-500x1000.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:45:\"Professor-Sohail-Inayatullah-1-1000x1000.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"Professor-Sohail-Inayatullah-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:43:\"Professor-Sohail-Inayatullah-1-600x371.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"Professor-Sohail-Inayatullah-1-100x100.jpeg\";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:43:\"Professor-Sohail-Inayatullah-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:43:\"Professor-Sohail-Inayatullah-1-600x371.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"Professor-Sohail-Inayatullah-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"NIKON D3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1201132491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(606, 219, '_wp_attached_file', '2020/11/Dr.-Ivana-Milojevic-1.png'),
(607, 219, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:299;s:6:\"height\";i:386;s:4:\"file\";s:33:\"2020/11/Dr.-Ivana-Milojevic-1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Dr.-Ivana-Milojevic-1-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Dr.-Ivana-Milojevic-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:31:\"Dr.-Ivana-Milojevic-1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Dr.-Ivana-Milojevic-1-299x300.png\";s:5:\"width\";i:299;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:33:\"Dr.-Ivana-Milojevic-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"Dr.-Ivana-Milojevic-1-299x300.png\";s:5:\"width\";i:299;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Dr.-Ivana-Milojevic-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(608, 220, '_wp_attached_file', '2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg'),
(609, 220, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:477;s:6:\"height\";i:586;s:4:\"file\";s:70:\"2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-1-244x300.jpg\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:70:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-1-477x563.jpg\";s:5:\"width\";i:477;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:68:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:70:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-1-477x400.jpg\";s:5:\"width\";i:477;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:70:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-1-477x500.jpg\";s:5:\"width\";i:477;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:70:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-1-477x500.jpg\";s:5:\"width\";i:477;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:70:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:70:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-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:70:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-1-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:70:\"Dr252520Colin252520Russo252520Promo_edited_edited_edited-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:{}}}'),
(610, 221, '_wp_attached_file', '2020/11/sohail.jpg'),
(611, 221, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:246;s:6:\"height\";i:353;s:4:\"file\";s:18:\"2020/11/sohail.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"sohail-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"sohail-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:16:\"sohail-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"sohail-246x300.jpg\";s:5:\"width\";i:246;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:\"sohail-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:\"sohail-246x300.jpg\";s:5:\"width\";i:246;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"sohail-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:{}}}'),
(612, 222, '_wp_attached_file', '2020/11/Edwina-Marks.jpeg'),
(613, 222, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:25:\"2020/11/Edwina-Marks.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Edwina-Marks-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:23:\"Edwina-Marks-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Edwina-Marks-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Edwina-Marks-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(614, 223, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605185942081{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605186540530{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail.jpg?id=221) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}'),
(615, 224, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605186668855{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605186689113{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}'),
(616, 225, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605186805389{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}'),
(617, 227, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605186805389{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}'),
(618, 228, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605186805389{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(619, 229, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605186805389{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(620, 231, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605189473524{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Professor-Sohail-Inayatullah-1.jpeg?id=218) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(621, 232, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-13-at-00.55.12.png'),
(622, 232, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:948;s:6:\"height\";i:1200;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-13-at-00.55.12.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-237x300.png\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-00.55.12-809x1024.png\";s:5:\"width\";i:809;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-768x972.png\";s:5:\"width\";i:768;s:6:\"height\";i:972;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-948x563.png\";s:5:\"width\";i:948;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-13-at-00.55.12-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-948x500.png\";s:5:\"width\";i:948;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-00.55.12-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-00.55.12-948x1000.png\";s:5:\"width\";i:948;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-600x759.png\";s:5:\"width\";i:600;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-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:46:\"Screen-Shot-2020-11-13-at-00.55.12-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:46:\"Screen-Shot-2020-11-13-at-00.55.12-600x759.png\";s:5:\"width\";i:600;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.55.12-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(623, 233, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-13-at-00.54.21.png');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(624, 233, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:948;s:6:\"height\";i:1200;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-13-at-00.54.21.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.54.21-237x300.png\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-00.54.21-809x1024.png\";s:5:\"width\";i:809;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.54.21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.54.21-768x972.png\";s:5:\"width\";i:768;s:6:\"height\";i:972;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.54.21-948x563.png\";s:5:\"width\";i:948;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-13-at-00.54.21-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.54.21-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.54.21-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.54.21-948x500.png\";s:5:\"width\";i:948;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-00.54.21-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-00.54.21-948x1000.png\";s:5:\"width\";i:948;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.54.21-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:46:\"Screen-Shot-2020-11-13-at-00.54.21-600x759.png\";s:5:\"width\";i:600;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.54.21-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:46:\"Screen-Shot-2020-11-13-at-00.54.21-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:46:\"Screen-Shot-2020-11-13-at-00.54.21-600x759.png\";s:5:\"width\";i:600;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-00.54.21-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:{}}}'),
(625, 234, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605193055646{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.55.12.png?id=232) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605193076519{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png?id=233) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(626, 235, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-13-at-01.02.56.png'),
(627, 235, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:948;s:6:\"height\";i:1200;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-13-at-01.02.56.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.02.56-237x300.png\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.02.56-809x1024.png\";s:5:\"width\";i:809;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.02.56-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.02.56-768x972.png\";s:5:\"width\";i:768;s:6:\"height\";i:972;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.02.56-948x563.png\";s:5:\"width\";i:948;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-13-at-01.02.56-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.02.56-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.02.56-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.02.56-948x500.png\";s:5:\"width\";i:948;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.02.56-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.02.56-948x1000.png\";s:5:\"width\";i:948;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.02.56-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:46:\"Screen-Shot-2020-11-13-at-01.02.56-600x759.png\";s:5:\"width\";i:600;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.02.56-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:46:\"Screen-Shot-2020-11-13-at-01.02.56-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:46:\"Screen-Shot-2020-11-13-at-01.02.56-600x759.png\";s:5:\"width\";i:600;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.02.56-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:{}}}'),
(628, 236, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-13-at-01.04.48.png'),
(629, 236, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:948;s:6:\"height\";i:1200;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-13-at-01.04.48.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.04.48-237x300.png\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.04.48-809x1024.png\";s:5:\"width\";i:809;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.04.48-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.04.48-768x972.png\";s:5:\"width\";i:768;s:6:\"height\";i:972;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.04.48-948x563.png\";s:5:\"width\";i:948;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-13-at-01.04.48-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.04.48-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.04.48-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.04.48-948x500.png\";s:5:\"width\";i:948;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.04.48-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.04.48-948x1000.png\";s:5:\"width\";i:948;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.04.48-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:46:\"Screen-Shot-2020-11-13-at-01.04.48-600x759.png\";s:5:\"width\";i:600;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.04.48-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:46:\"Screen-Shot-2020-11-13-at-01.04.48-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:46:\"Screen-Shot-2020-11-13-at-01.04.48-600x759.png\";s:5:\"width\";i:600;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.04.48-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:{}}}'),
(630, 237, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605193647983{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605193076519{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png?id=233) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(631, 238, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605193735241{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.02.56.png?id=235) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605193710541{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png?id=233) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(632, 240, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605194352862{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1605194370838{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605194386221{background-color: #000000 !important;}.vc_custom_1605194485120{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.02.56.png?id=235) !important;}.vc_custom_1605194386221{background-color: #000000 !important;}.vc_custom_1605194508460{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.04.48.png?id=236) !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(633, 241, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-13-at-01.31.57.png'),
(634, 241, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1200;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-13-at-01.31.57.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.57-250x300.png\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.31.57-853x1024.png\";s:5:\"width\";i:853;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.57-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.57-768x922.png\";s:5:\"width\";i:768;s:6:\"height\";i:922;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.31.57-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-13-at-01.31.57-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.57-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.57-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.31.57-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.31.57-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-13-at-01.31.57-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.57-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:46:\"Screen-Shot-2020-11-13-at-01.31.57-600x720.png\";s:5:\"width\";i:600;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.57-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:46:\"Screen-Shot-2020-11-13-at-01.31.57-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:46:\"Screen-Shot-2020-11-13-at-01.31.57-600x720.png\";s:5:\"width\";i:600;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.57-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:{}}}'),
(635, 242, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-13-at-01.31.46.png'),
(636, 242, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1200;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-13-at-01.31.46.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.46-250x300.png\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.31.46-853x1024.png\";s:5:\"width\";i:853;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.46-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.46-768x922.png\";s:5:\"width\";i:768;s:6:\"height\";i:922;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.31.46-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-13-at-01.31.46-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.46-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.46-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.31.46-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.31.46-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-13-at-01.31.46-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.46-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:46:\"Screen-Shot-2020-11-13-at-01.31.46-600x720.png\";s:5:\"width\";i:600;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.46-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:46:\"Screen-Shot-2020-11-13-at-01.31.46-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:46:\"Screen-Shot-2020-11-13-at-01.31.46-600x720.png\";s:5:\"width\";i:600;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.31.46-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:{}}}'),
(637, 243, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605195202594{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605195233727{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}'),
(638, 244, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-13-at-01.35.41.png'),
(639, 244, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1200;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-13-at-01.35.41.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.41-250x300.png\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.35.41-853x1024.png\";s:5:\"width\";i:853;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.41-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.41-768x922.png\";s:5:\"width\";i:768;s:6:\"height\";i:922;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.35.41-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-13-at-01.35.41-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.41-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.41-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.35.41-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.35.41-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-13-at-01.35.41-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.41-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:46:\"Screen-Shot-2020-11-13-at-01.35.41-600x720.png\";s:5:\"width\";i:600;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.41-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:46:\"Screen-Shot-2020-11-13-at-01.35.41-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:46:\"Screen-Shot-2020-11-13-at-01.35.41-600x720.png\";s:5:\"width\";i:600;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.41-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:{}}}'),
(640, 245, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-13-at-01.35.29.png'),
(641, 245, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1200;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-13-at-01.35.29.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.29-250x300.png\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.35.29-853x1024.png\";s:5:\"width\";i:853;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.29-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.29-768x922.png\";s:5:\"width\";i:768;s:6:\"height\";i:922;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.35.29-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-13-at-01.35.29-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.29-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.29-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.35.29-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-13-at-01.35.29-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-13-at-01.35.29-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.29-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:46:\"Screen-Shot-2020-11-13-at-01.35.29-600x720.png\";s:5:\"width\";i:600;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.29-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:46:\"Screen-Shot-2020-11-13-at-01.35.29-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:46:\"Screen-Shot-2020-11-13-at-01.35.29-600x720.png\";s:5:\"width\";i:600;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-13-at-01.35.29-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:{}}}'),
(642, 246, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605195233727{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}'),
(643, 247, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605195588651{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}'),
(644, 248, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605195588651{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}'),
(645, 249, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605195588651{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}'),
(646, 250, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605195588651{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}.vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605195588651{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}'),
(647, 251, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605196867550{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png?id=233) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197158330{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png?id=233) !important;}.vc_custom_1605196972171{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(648, 252, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197382149{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;}.vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(649, 253, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(650, 254, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(651, 256, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(652, 258, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(653, 259, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(654, 24, '_oembed_298821079d0c6093a5cd1493958a9c17', '{{unknown}}'),
(655, 265, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(656, 268, '_wp_attached_file', '2020/11/Amanda-Hirschausen.jpeg'),
(657, 268, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:31:\"2020/11/Amanda-Hirschausen.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Amanda-Hirschausen-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Amanda-Hirschausen-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:29:\"Amanda-Hirschausen-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:31:\"Amanda-Hirschausen-450x400.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Amanda-Hirschausen-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Amanda-Hirschausen-100x100.jpeg\";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:31:\"Amanda-Hirschausen-300x300.jpeg\";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:31:\"Amanda-Hirschausen-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(658, 269, '_wp_attached_file', '2020/11/Michael-Cooke.jpeg'),
(659, 269, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2020/11/Michael-Cooke.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Michael-Cooke-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Michael-Cooke-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:24:\"Michael-Cooke-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:26:\"Michael-Cooke-500x400.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Michael-Cooke-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Michael-Cooke-100x100.jpeg\";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:\"Michael-Cooke-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Michael-Cooke-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(660, 270, '_wp_attached_file', '2020/11/Edwina-Marks-1.jpeg'),
(661, 270, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:27:\"2020/11/Edwina-Marks-1.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Edwina-Marks-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:25:\"Edwina-Marks-1-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Edwina-Marks-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Edwina-Marks-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(662, 271, '_wp_attached_file', '2020/11/Mervin-Chiang.jpeg'),
(663, 271, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2020/11/Mervin-Chiang.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Mervin-Chiang-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:24:\"Mervin-Chiang-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Mervin-Chiang-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Mervin-Chiang-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(664, 272, '_wp_attached_file', '2020/11/Joe-Finneran.jpeg'),
(665, 272, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:344;s:6:\"height\";i:344;s:4:\"file\";s:25:\"2020/11/Joe-Finneran.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Joe-Finneran-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Joe-Finneran-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:23:\"Joe-Finneran-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Joe-Finneran-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Joe-Finneran-100x100.jpeg\";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:\"Joe-Finneran-300x300.jpeg\";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:25:\"Joe-Finneran-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(666, 273, '_wp_attached_file', '2020/11/57366676_2658214920862488_3781843116445663232_o.jpg'),
(667, 273, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:59:\"2020/11/57366676_2658214920862488_3781843116445663232_o.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"57366676_2658214920862488_3781843116445663232_o-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"57366676_2658214920862488_3781843116445663232_o-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"57366676_2658214920862488_3781843116445663232_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"57366676_2658214920862488_3781843116445663232_o-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"57366676_2658214920862488_3781843116445663232_o-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"57366676_2658214920862488_3781843116445663232_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"57366676_2658214920862488_3781843116445663232_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"57366676_2658214920862488_3781843116445663232_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"57366676_2658214920862488_3781843116445663232_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"57366676_2658214920862488_3781843116445663232_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"57366676_2658214920862488_3781843116445663232_o-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"57366676_2658214920862488_3781843116445663232_o-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"57366676_2658214920862488_3781843116445663232_o-300x300.jpg\";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:59:\"57366676_2658214920862488_3781843116445663232_o-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:59:\"57366676_2658214920862488_3781843116445663232_o-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:59:\"57366676_2658214920862488_3781843116445663232_o-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:59:\"57366676_2658214920862488_3781843116445663232_o-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:59:\"57366676_2658214920862488_3781843116445663232_o-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:{}}}'),
(668, 274, '_wp_attached_file', '2020/11/57094443_2658224444194869_1251765834712350720_o.jpg'),
(669, 274, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:59:\"2020/11/57094443_2658224444194869_1251765834712350720_o.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"57094443_2658224444194869_1251765834712350720_o-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"57094443_2658224444194869_1251765834712350720_o-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"57094443_2658224444194869_1251765834712350720_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"57094443_2658224444194869_1251765834712350720_o-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"57094443_2658224444194869_1251765834712350720_o-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"57094443_2658224444194869_1251765834712350720_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"57094443_2658224444194869_1251765834712350720_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"57094443_2658224444194869_1251765834712350720_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"57094443_2658224444194869_1251765834712350720_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"57094443_2658224444194869_1251765834712350720_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"57094443_2658224444194869_1251765834712350720_o-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"57094443_2658224444194869_1251765834712350720_o-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"57094443_2658224444194869_1251765834712350720_o-300x300.jpg\";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:59:\"57094443_2658224444194869_1251765834712350720_o-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:59:\"57094443_2658224444194869_1251765834712350720_o-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:59:\"57094443_2658224444194869_1251765834712350720_o-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:59:\"57094443_2658224444194869_1251765834712350720_o-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:59:\"57094443_2658224444194869_1251765834712350720_o-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:{}}}'),
(670, 275, '_wp_attached_file', '2020/11/57568374_2658235834193730_6667417147666333696_o.jpg'),
(671, 275, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2020/11/57568374_2658235834193730_6667417147666333696_o.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"57568374_2658235834193730_6667417147666333696_o-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"57568374_2658235834193730_6667417147666333696_o-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"57568374_2658235834193730_6667417147666333696_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"57568374_2658235834193730_6667417147666333696_o-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"57568374_2658235834193730_6667417147666333696_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"57568374_2658235834193730_6667417147666333696_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"57568374_2658235834193730_6667417147666333696_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"57568374_2658235834193730_6667417147666333696_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"57568374_2658235834193730_6667417147666333696_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"57568374_2658235834193730_6667417147666333696_o-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:60:\"57568374_2658235834193730_6667417147666333696_o-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"57568374_2658235834193730_6667417147666333696_o-300x300.jpg\";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:59:\"57568374_2658235834193730_6667417147666333696_o-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:59:\"57568374_2658235834193730_6667417147666333696_o-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:59:\"57568374_2658235834193730_6667417147666333696_o-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:59:\"57568374_2658235834193730_6667417147666333696_o-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:59:\"57568374_2658235834193730_6667417147666333696_o-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:{}}}'),
(672, 276, '_wp_attached_file', '2020/11/57284556_2658236814193632_1200955164714860544_o.jpg'),
(673, 276, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:59:\"2020/11/57284556_2658236814193632_1200955164714860544_o.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"57284556_2658236814193632_1200955164714860544_o-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"57284556_2658236814193632_1200955164714860544_o-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"57284556_2658236814193632_1200955164714860544_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"57284556_2658236814193632_1200955164714860544_o-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"57284556_2658236814193632_1200955164714860544_o-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"57284556_2658236814193632_1200955164714860544_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"57284556_2658236814193632_1200955164714860544_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"57284556_2658236814193632_1200955164714860544_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"57284556_2658236814193632_1200955164714860544_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"57284556_2658236814193632_1200955164714860544_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"57284556_2658236814193632_1200955164714860544_o-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"57284556_2658236814193632_1200955164714860544_o-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"57284556_2658236814193632_1200955164714860544_o-300x300.jpg\";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:59:\"57284556_2658236814193632_1200955164714860544_o-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"57284556_2658236814193632_1200955164714860544_o-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:59:\"57284556_2658236814193632_1200955164714860544_o-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:59:\"57284556_2658236814193632_1200955164714860544_o-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"57284556_2658236814193632_1200955164714860544_o-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:{}}}'),
(674, 277, '_wp_attached_file', '2020/11/57209074_2658239127526734_7913116538641580032_o.jpg'),
(675, 277, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:59:\"2020/11/57209074_2658239127526734_7913116538641580032_o.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"57209074_2658239127526734_7913116538641580032_o-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"57209074_2658239127526734_7913116538641580032_o-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"57209074_2658239127526734_7913116538641580032_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"57209074_2658239127526734_7913116538641580032_o-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"57209074_2658239127526734_7913116538641580032_o-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"57209074_2658239127526734_7913116538641580032_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"57209074_2658239127526734_7913116538641580032_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"57209074_2658239127526734_7913116538641580032_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"57209074_2658239127526734_7913116538641580032_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"57209074_2658239127526734_7913116538641580032_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"57209074_2658239127526734_7913116538641580032_o-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"57209074_2658239127526734_7913116538641580032_o-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"57209074_2658239127526734_7913116538641580032_o-300x300.jpg\";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:59:\"57209074_2658239127526734_7913116538641580032_o-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"57209074_2658239127526734_7913116538641580032_o-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:59:\"57209074_2658239127526734_7913116538641580032_o-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:59:\"57209074_2658239127526734_7913116538641580032_o-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"57209074_2658239127526734_7913116538641580032_o-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:{}}}'),
(676, 278, '_wp_attached_file', '2020/11/57511709_2658246754192638_8646399715291693056_o.jpg'),
(677, 278, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:59:\"2020/11/57511709_2658246754192638_8646399715291693056_o.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"57511709_2658246754192638_8646399715291693056_o-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"57511709_2658246754192638_8646399715291693056_o-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"57511709_2658246754192638_8646399715291693056_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"57511709_2658246754192638_8646399715291693056_o-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"57511709_2658246754192638_8646399715291693056_o-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"57511709_2658246754192638_8646399715291693056_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"57511709_2658246754192638_8646399715291693056_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"57511709_2658246754192638_8646399715291693056_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"57511709_2658246754192638_8646399715291693056_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"57511709_2658246754192638_8646399715291693056_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"57511709_2658246754192638_8646399715291693056_o-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"57511709_2658246754192638_8646399715291693056_o-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"57511709_2658246754192638_8646399715291693056_o-300x300.jpg\";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:59:\"57511709_2658246754192638_8646399715291693056_o-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:59:\"57511709_2658246754192638_8646399715291693056_o-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:59:\"57511709_2658246754192638_8646399715291693056_o-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:59:\"57511709_2658246754192638_8646399715291693056_o-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:59:\"57511709_2658246754192638_8646399715291693056_o-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:{}}}'),
(678, 279, '_wp_attached_file', '2020/11/57262753_2658250024192311_2207423477143568384_o.jpg'),
(679, 279, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:59:\"2020/11/57262753_2658250024192311_2207423477143568384_o.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"57262753_2658250024192311_2207423477143568384_o-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"57262753_2658250024192311_2207423477143568384_o-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"57262753_2658250024192311_2207423477143568384_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"57262753_2658250024192311_2207423477143568384_o-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"57262753_2658250024192311_2207423477143568384_o-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"57262753_2658250024192311_2207423477143568384_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"57262753_2658250024192311_2207423477143568384_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"57262753_2658250024192311_2207423477143568384_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"57262753_2658250024192311_2207423477143568384_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"57262753_2658250024192311_2207423477143568384_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"57262753_2658250024192311_2207423477143568384_o-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"57262753_2658250024192311_2207423477143568384_o-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"57262753_2658250024192311_2207423477143568384_o-300x300.jpg\";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:59:\"57262753_2658250024192311_2207423477143568384_o-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"57262753_2658250024192311_2207423477143568384_o-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:59:\"57262753_2658250024192311_2207423477143568384_o-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:59:\"57262753_2658250024192311_2207423477143568384_o-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"57262753_2658250024192311_2207423477143568384_o-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:{}}}'),
(680, 280, '_wp_attached_file', '2020/11/57155351_2658252794192034_8082062066526978048_o.jpg'),
(681, 280, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:59:\"2020/11/57155351_2658252794192034_8082062066526978048_o.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"57155351_2658252794192034_8082062066526978048_o-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"57155351_2658252794192034_8082062066526978048_o-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"57155351_2658252794192034_8082062066526978048_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"57155351_2658252794192034_8082062066526978048_o-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"57155351_2658252794192034_8082062066526978048_o-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"57155351_2658252794192034_8082062066526978048_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"57155351_2658252794192034_8082062066526978048_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"57155351_2658252794192034_8082062066526978048_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"57155351_2658252794192034_8082062066526978048_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"57155351_2658252794192034_8082062066526978048_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"57155351_2658252794192034_8082062066526978048_o-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"57155351_2658252794192034_8082062066526978048_o-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"57155351_2658252794192034_8082062066526978048_o-300x300.jpg\";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:59:\"57155351_2658252794192034_8082062066526978048_o-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:59:\"57155351_2658252794192034_8082062066526978048_o-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:59:\"57155351_2658252794192034_8082062066526978048_o-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:59:\"57155351_2658252794192034_8082062066526978048_o-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:59:\"57155351_2658252794192034_8082062066526978048_o-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:{}}}'),
(682, 281, '_wp_attached_file', '2020/11/57240558_2659606377390009_8147236262508494848_o.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(683, 281, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1526;s:4:\"file\";s:59:\"2020/11/57240558_2659606377390009_8147236262508494848_o.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"57240558_2659606377390009_8147236262508494848_o-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"57240558_2659606377390009_8147236262508494848_o-1024x763.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:763;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"57240558_2659606377390009_8147236262508494848_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"57240558_2659606377390009_8147236262508494848_o-768x572.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:572;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"57240558_2659606377390009_8147236262508494848_o-1536x1145.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"57240558_2659606377390009_8147236262508494848_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"57240558_2659606377390009_8147236262508494848_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"57240558_2659606377390009_8147236262508494848_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"57240558_2659606377390009_8147236262508494848_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"57240558_2659606377390009_8147236262508494848_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"57240558_2659606377390009_8147236262508494848_o-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"57240558_2659606377390009_8147236262508494848_o-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"57240558_2659606377390009_8147236262508494848_o-300x300.jpg\";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:59:\"57240558_2659606377390009_8147236262508494848_o-600x447.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"57240558_2659606377390009_8147236262508494848_o-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:59:\"57240558_2659606377390009_8147236262508494848_o-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:59:\"57240558_2659606377390009_8147236262508494848_o-600x447.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"57240558_2659606377390009_8147236262508494848_o-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:{}}}'),
(684, 282, '_wp_attached_file', '2020/11/57267713_2658194400864540_5298615842139799552_o.jpg'),
(685, 282, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:59:\"2020/11/57267713_2658194400864540_5298615842139799552_o.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"57267713_2658194400864540_5298615842139799552_o-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"57267713_2658194400864540_5298615842139799552_o-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"57267713_2658194400864540_5298615842139799552_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"57267713_2658194400864540_5298615842139799552_o-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"57267713_2658194400864540_5298615842139799552_o-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"57267713_2658194400864540_5298615842139799552_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"57267713_2658194400864540_5298615842139799552_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"57267713_2658194400864540_5298615842139799552_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"57267713_2658194400864540_5298615842139799552_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"57267713_2658194400864540_5298615842139799552_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"57267713_2658194400864540_5298615842139799552_o-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"57267713_2658194400864540_5298615842139799552_o-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"57267713_2658194400864540_5298615842139799552_o-300x300.jpg\";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:59:\"57267713_2658194400864540_5298615842139799552_o-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"57267713_2658194400864540_5298615842139799552_o-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:59:\"57267713_2658194400864540_5298615842139799552_o-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:59:\"57267713_2658194400864540_5298615842139799552_o-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"57267713_2658194400864540_5298615842139799552_o-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:{}}}'),
(686, 283, '_wp_attached_file', '2020/11/20615763_1907236922829527_5477434537160719459_o.jpg'),
(687, 283, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1380;s:6:\"height\";i:654;s:4:\"file\";s:59:\"2020/11/20615763_1907236922829527_5477434537160719459_o.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"20615763_1907236922829527_5477434537160719459_o-300x142.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"20615763_1907236922829527_5477434537160719459_o-1024x485.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"20615763_1907236922829527_5477434537160719459_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"20615763_1907236922829527_5477434537160719459_o-768x364.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"20615763_1907236922829527_5477434537160719459_o-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"20615763_1907236922829527_5477434537160719459_o-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"20615763_1907236922829527_5477434537160719459_o-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"20615763_1907236922829527_5477434537160719459_o-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"20615763_1907236922829527_5477434537160719459_o-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"20615763_1907236922829527_5477434537160719459_o-500x654.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:60:\"20615763_1907236922829527_5477434537160719459_o-1000x654.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"20615763_1907236922829527_5477434537160719459_o-300x300.jpg\";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:59:\"20615763_1907236922829527_5477434537160719459_o-600x284.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"20615763_1907236922829527_5477434537160719459_o-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:59:\"20615763_1907236922829527_5477434537160719459_o-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:59:\"20615763_1907236922829527_5477434537160719459_o-600x284.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"20615763_1907236922829527_5477434537160719459_o-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:{}}}'),
(688, 284, '_wp_attached_file', '2020/11/20800073_1910499542503265_7505898343666093803_n.jpg'),
(689, 284, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:59:\"2020/11/20800073_1910499542503265_7505898343666093803_n.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"20800073_1910499542503265_7505898343666093803_n-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"20800073_1910499542503265_7505898343666093803_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"20800073_1910499542503265_7505898343666093803_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"20800073_1910499542503265_7505898343666093803_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"20800073_1910499542503265_7505898343666093803_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"20800073_1910499542503265_7505898343666093803_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:59:\"20800073_1910499542503265_7505898343666093803_n-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"20800073_1910499542503265_7505898343666093803_n-500x540.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"20800073_1910499542503265_7505898343666093803_n-300x300.jpg\";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:59:\"20800073_1910499542503265_7505898343666093803_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"20800073_1910499542503265_7505898343666093803_n-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:59:\"20800073_1910499542503265_7505898343666093803_n-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:59:\"20800073_1910499542503265_7505898343666093803_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"20800073_1910499542503265_7505898343666093803_n-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:{}}}'),
(690, 285, '_wp_attached_file', '2020/11/20914366_1910499549169931_3273451228039313048_n.jpg'),
(691, 285, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:59:\"2020/11/20914366_1910499549169931_3273451228039313048_n.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"20914366_1910499549169931_3273451228039313048_n-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"20914366_1910499549169931_3273451228039313048_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"20914366_1910499549169931_3273451228039313048_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"20914366_1910499549169931_3273451228039313048_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"20914366_1910499549169931_3273451228039313048_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"20914366_1910499549169931_3273451228039313048_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:59:\"20914366_1910499549169931_3273451228039313048_n-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"20914366_1910499549169931_3273451228039313048_n-500x540.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"20914366_1910499549169931_3273451228039313048_n-300x300.jpg\";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:59:\"20914366_1910499549169931_3273451228039313048_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"20914366_1910499549169931_3273451228039313048_n-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:59:\"20914366_1910499549169931_3273451228039313048_n-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:59:\"20914366_1910499549169931_3273451228039313048_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"20914366_1910499549169931_3273451228039313048_n-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:{}}}'),
(692, 286, '_wp_attached_file', '2020/11/20842128_1910499565836596_6010907214807209373_n.jpg'),
(693, 286, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:59:\"2020/11/20842128_1910499565836596_6010907214807209373_n.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"20842128_1910499565836596_6010907214807209373_n-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"20842128_1910499565836596_6010907214807209373_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"20842128_1910499565836596_6010907214807209373_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"20842128_1910499565836596_6010907214807209373_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"20842128_1910499565836596_6010907214807209373_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"20842128_1910499565836596_6010907214807209373_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:59:\"20842128_1910499565836596_6010907214807209373_n-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"20842128_1910499565836596_6010907214807209373_n-500x540.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"20842128_1910499565836596_6010907214807209373_n-300x300.jpg\";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:59:\"20842128_1910499565836596_6010907214807209373_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"20842128_1910499565836596_6010907214807209373_n-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:59:\"20842128_1910499565836596_6010907214807209373_n-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:59:\"20842128_1910499565836596_6010907214807209373_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"20842128_1910499565836596_6010907214807209373_n-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:{}}}'),
(694, 287, '_wp_attached_file', '2020/11/20768064_1910499575836595_4751460979111461290_n.jpg'),
(695, 287, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:59:\"2020/11/20768064_1910499575836595_4751460979111461290_n.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"20768064_1910499575836595_4751460979111461290_n-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"20768064_1910499575836595_4751460979111461290_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"20768064_1910499575836595_4751460979111461290_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"20768064_1910499575836595_4751460979111461290_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"20768064_1910499575836595_4751460979111461290_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"20768064_1910499575836595_4751460979111461290_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:59:\"20768064_1910499575836595_4751460979111461290_n-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"20768064_1910499575836595_4751460979111461290_n-500x540.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"20768064_1910499575836595_4751460979111461290_n-300x300.jpg\";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:59:\"20768064_1910499575836595_4751460979111461290_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"20768064_1910499575836595_4751460979111461290_n-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:59:\"20768064_1910499575836595_4751460979111461290_n-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:59:\"20768064_1910499575836595_4751460979111461290_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"20768064_1910499575836595_4751460979111461290_n-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:{}}}'),
(696, 288, '_wp_attached_file', '2020/11/20842257_1910499625836590_1146819719056592350_n.jpg'),
(697, 288, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:59:\"2020/11/20842257_1910499625836590_1146819719056592350_n.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"20842257_1910499625836590_1146819719056592350_n-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"20842257_1910499625836590_1146819719056592350_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"20842257_1910499625836590_1146819719056592350_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"20842257_1910499625836590_1146819719056592350_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"20842257_1910499625836590_1146819719056592350_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"20842257_1910499625836590_1146819719056592350_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:59:\"20842257_1910499625836590_1146819719056592350_n-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"20842257_1910499625836590_1146819719056592350_n-500x540.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"20842257_1910499625836590_1146819719056592350_n-300x300.jpg\";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:59:\"20842257_1910499625836590_1146819719056592350_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"20842257_1910499625836590_1146819719056592350_n-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:59:\"20842257_1910499625836590_1146819719056592350_n-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:59:\"20842257_1910499625836590_1146819719056592350_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"20842257_1910499625836590_1146819719056592350_n-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:{}}}'),
(698, 289, '_wp_attached_file', '2020/11/20770030_1910499585836594_9135680779037222874_n.jpg'),
(699, 289, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:540;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2020/11/20770030_1910499585836594_9135680779037222874_n.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"20770030_1910499585836594_9135680779037222874_n-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"20770030_1910499585836594_9135680779037222874_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:59:\"20770030_1910499585836594_9135680779037222874_n-540x563.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"20770030_1910499585836594_9135680779037222874_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"20770030_1910499585836594_9135680779037222874_n-540x400.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"20770030_1910499585836594_9135680779037222874_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:59:\"20770030_1910499585836594_9135680779037222874_n-540x500.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"20770030_1910499585836594_9135680779037222874_n-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"20770030_1910499585836594_9135680779037222874_n-300x300.jpg\";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:59:\"20770030_1910499585836594_9135680779037222874_n-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:59:\"20770030_1910499585836594_9135680779037222874_n-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:59:\"20770030_1910499585836594_9135680779037222874_n-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:{}}}'),
(700, 290, '_wp_attached_file', '2020/11/20841752_1910499599169926_4041892631526116184_n.jpg'),
(701, 290, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:59:\"2020/11/20841752_1910499599169926_4041892631526116184_n.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"20841752_1910499599169926_4041892631526116184_n-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"20841752_1910499599169926_4041892631526116184_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"20841752_1910499599169926_4041892631526116184_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"20841752_1910499599169926_4041892631526116184_n-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"20841752_1910499599169926_4041892631526116184_n-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"20841752_1910499599169926_4041892631526116184_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:59:\"20841752_1910499599169926_4041892631526116184_n-960x500.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"20841752_1910499599169926_4041892631526116184_n-500x540.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"20841752_1910499599169926_4041892631526116184_n-300x300.jpg\";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:59:\"20841752_1910499599169926_4041892631526116184_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"20841752_1910499599169926_4041892631526116184_n-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:59:\"20841752_1910499599169926_4041892631526116184_n-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:59:\"20841752_1910499599169926_4041892631526116184_n-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"20841752_1910499599169926_4041892631526116184_n-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:{}}}'),
(702, 291, '_wp_attached_file', '2020/11/Brook-Kitson.jpeg'),
(703, 291, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2020/11/Brook-Kitson.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Brook-Kitson-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Brook-Kitson-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:23:\"Brook-Kitson-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:25:\"Brook-Kitson-500x400.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Brook-Kitson-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Brook-Kitson-100x100.jpeg\";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:\"Brook-Kitson-300x300.jpeg\";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:25:\"Brook-Kitson-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(704, 292, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(705, 294, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}'),
(706, 296, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605247875239{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg?id=291) !important;}'),
(707, 298, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249085154{background-color: #ffffff !important;}'),
(708, 299, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(709, 300, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(710, 302, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(711, 303, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(712, 305, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(713, 307, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(714, 308, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(715, 309, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(716, 311, '_wpb_shortcodes_custom_css', '.vc_custom_1605184254528{padding-top: 0px !important;padding-bottom: 150px !important;}.vc_custom_1605255134482{background-color: #ffffff !important;}.vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}'),
(717, 312, '_wpb_shortcodes_custom_css', '.vc_custom_1605184254528{padding-top: 0px !important;padding-bottom: 150px !important;}.vc_custom_1605255134482{background-color: #ffffff !important;}.vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}'),
(718, 313, '_wpb_shortcodes_custom_css', '.vc_custom_1605257045189{padding-top: 0px !important;padding-bottom: 150px !important;}.vc_custom_1605255134482{background-color: #ffffff !important;}.vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}'),
(719, 314, '_wpb_shortcodes_custom_css', '.vc_custom_1605257175847{padding-top: 0px !important;padding-bottom: 150px !important;}.vc_custom_1605255134482{background-color: #ffffff !important;}.vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}'),
(720, 315, '_wpb_shortcodes_custom_css', '.vc_custom_1605257175847{padding-top: 0px !important;padding-bottom: 150px !important;}.vc_custom_1605255134482{background-color: #ffffff !important;}.vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}'),
(721, 316, '_wpb_shortcodes_custom_css', '.vc_custom_1605257175847{padding-top: 0px !important;padding-bottom: 150px !important;}.vc_custom_1605255134482{background-color: #ffffff !important;}.vc_custom_1605258880658{background-position: 0 0 !important;background-repeat: no-repeat !important;}'),
(722, 317, '_wpb_shortcodes_custom_css', '.vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(723, 318, '_wpb_shortcodes_custom_css', '.vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605261297938{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2018-07-28-at-08.02.35.png?id=217) !important;}'),
(724, 319, '_wpb_shortcodes_custom_css', '.vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605261421824{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;}'),
(725, 320, '_wpb_shortcodes_custom_css', '.vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605261550323{background: #ffffff url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}'),
(726, 321, '_wpb_shortcodes_custom_css', '.vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605261620532{background: #ffffff url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(727, 322, '_wpb_shortcodes_custom_css', '.vc_custom_1605261813384{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605261620532{background: #ffffff url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(728, 323, '_wpb_shortcodes_custom_css', '.vc_custom_1605261813384{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605261620532{background: #ffffff url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(729, 324, '_wpb_shortcodes_custom_css', '.vc_custom_1605261813384{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264535603{background: __USE_THEME_MAIN_COLOR__ url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(730, 325, '_wpb_shortcodes_custom_css', '.vc_custom_1605261813384{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264535603{background: __USE_THEME_MAIN_COLOR__ url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(731, 326, '_wpb_shortcodes_custom_css', '.vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264756910{background: __USE_THEME_MAIN_COLOR__ url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(732, 327, '_wpb_shortcodes_custom_css', '.vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(733, 328, '_wpb_shortcodes_custom_css', '.vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605264952828{background-color: #0c0c0c !important;}'),
(734, 329, '_wpb_shortcodes_custom_css', '.vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605265539702{background-color: __USE_THEME_MAIN_COLOR__ !important;}'),
(735, 330, '_wpb_shortcodes_custom_css', '.vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605265584544{background-color: __USE_THEME_MAIN_COLOR__ !important;}'),
(736, 331, '_wpb_shortcodes_custom_css', '.vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605265584544{background-color: __USE_THEME_MAIN_COLOR__ !important;}.vc_custom_1605265646794{background-color: __USE_THEME_MAIN_COLOR__ !important;}'),
(737, 332, '_wpb_shortcodes_custom_css', '.vc_custom_1605265776727{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605265584544{background-color: __USE_THEME_MAIN_COLOR__ !important;}.vc_custom_1605265646794{background-color: __USE_THEME_MAIN_COLOR__ !important;}'),
(738, 333, '_wpb_shortcodes_custom_css', '.vc_custom_1605266309958{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605265584544{background-color: __USE_THEME_MAIN_COLOR__ !important;}.vc_custom_1605265646794{background-color: __USE_THEME_MAIN_COLOR__ !important;}'),
(739, 334, '_wpb_shortcodes_custom_css', '.vc_custom_1605266309958{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605265584544{background-color: __USE_THEME_MAIN_COLOR__ !important;}.vc_custom_1605265646794{background-color: __USE_THEME_MAIN_COLOR__ !important;}'),
(740, 335, '_wpb_shortcodes_custom_css', '.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(741, 336, '_wpb_shortcodes_custom_css', '.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(742, 337, '_wpb_shortcodes_custom_css', '.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(743, 338, '_wpb_shortcodes_custom_css', '.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605266771780{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(744, 339, '_wpb_shortcodes_custom_css', '.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(745, 340, '_wpb_shortcodes_custom_css', '.vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(746, 341, '_wpb_shortcodes_custom_css', '.vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(747, 342, '_wpb_shortcodes_custom_css', '.vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267231494{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(748, 343, '_wpb_shortcodes_custom_css', '.vc_custom_1605267344750{margin-bottom: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(749, 344, '_wpb_shortcodes_custom_css', '.vc_custom_1605271894378{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(750, 345, '_wpb_shortcodes_custom_css', '.vc_custom_1605271953522{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(751, 346, '_wpb_shortcodes_custom_css', '.vc_custom_1605272061406{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(752, 347, '_wpb_shortcodes_custom_css', '.vc_custom_1605272104655{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(754, 348, '_wpb_shortcodes_custom_css', '.vc_custom_1605272249935{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(755, 349, '_wp_attached_file', '2020/11/ghiffari-haris-eq_JhCNUiTE-unsplash-scaled.jpg'),
(756, 349, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:54:\"2020/11/ghiffari-haris-eq_JhCNUiTE-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"ghiffari-haris-eq_JhCNUiTE-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"ghiffari-haris-eq_JhCNUiTE-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"ghiffari-haris-eq_JhCNUiTE-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"ghiffari-haris-eq_JhCNUiTE-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"ghiffari-haris-eq_JhCNUiTE-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"ghiffari-haris-eq_JhCNUiTE-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:48:\"ghiffari-haris-eq_JhCNUiTE-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:45:\"ghiffari-haris-eq_JhCNUiTE-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:47:\"ghiffari-haris-eq_JhCNUiTE-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:47:\"ghiffari-haris-eq_JhCNUiTE-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:48:\"ghiffari-haris-eq_JhCNUiTE-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:48:\"ghiffari-haris-eq_JhCNUiTE-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:49:\"ghiffari-haris-eq_JhCNUiTE-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"ghiffari-haris-eq_JhCNUiTE-unsplash-300x300.jpg\";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:47:\"ghiffari-haris-eq_JhCNUiTE-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:47:\"ghiffari-haris-eq_JhCNUiTE-unsplash-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:47:\"ghiffari-haris-eq_JhCNUiTE-unsplash-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:47:\"ghiffari-haris-eq_JhCNUiTE-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:47:\"ghiffari-haris-eq_JhCNUiTE-unsplash-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:{}}s:14:\"original_image\";s:39:\"ghiffari-haris-eq_JhCNUiTE-unsplash.jpg\";}'),
(757, 350, '_wp_attached_file', '2020/11/s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-scaled.jpg'),
(758, 350, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2020/11/s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:51:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:48:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:50:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:50:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:51:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:51:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:52:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:50:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-300x300.jpg\";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:50:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:50:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-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:50:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-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:50:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:50:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash-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:{}}s:14:\"original_image\";s:42:\"s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash.jpg\";}'),
(759, 351, '_wp_attached_file', '2020/11/tim-patch-2vYQCdr74D8-unsplash-scaled.jpg'),
(760, 351, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1438;s:6:\"height\";i:2560;s:4:\"file\";s:49:\"2020/11/tim-patch-2vYQCdr74D8-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"tim-patch-2vYQCdr74D8-unsplash-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"tim-patch-2vYQCdr74D8-unsplash-575x1024.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"tim-patch-2vYQCdr74D8-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"tim-patch-2vYQCdr74D8-unsplash-768x1367.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"tim-patch-2vYQCdr74D8-unsplash-863x1536.jpg\";s:5:\"width\";i:863;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:44:\"tim-patch-2vYQCdr74D8-unsplash-1151x2048.jpg\";s:5:\"width\";i:1151;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:43:\"tim-patch-2vYQCdr74D8-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:40:\"tim-patch-2vYQCdr74D8-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:42:\"tim-patch-2vYQCdr74D8-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:42:\"tim-patch-2vYQCdr74D8-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:43:\"tim-patch-2vYQCdr74D8-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:43:\"tim-patch-2vYQCdr74D8-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:44:\"tim-patch-2vYQCdr74D8-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"tim-patch-2vYQCdr74D8-unsplash-300x300.jpg\";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:43:\"tim-patch-2vYQCdr74D8-unsplash-600x1068.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1068;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"tim-patch-2vYQCdr74D8-unsplash-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:42:\"tim-patch-2vYQCdr74D8-unsplash-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:43:\"tim-patch-2vYQCdr74D8-unsplash-600x1068.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1068;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:42:\"tim-patch-2vYQCdr74D8-unsplash-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:{}}s:14:\"original_image\";s:34:\"tim-patch-2vYQCdr74D8-unsplash.jpg\";}'),
(761, 352, '_wp_attached_file', '2020/11/kate-trifo-osyibEP93mQ-unsplash-scaled.jpg'),
(762, 352, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:50:\"2020/11/kate-trifo-osyibEP93mQ-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"kate-trifo-osyibEP93mQ-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"kate-trifo-osyibEP93mQ-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"kate-trifo-osyibEP93mQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"kate-trifo-osyibEP93mQ-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"kate-trifo-osyibEP93mQ-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"kate-trifo-osyibEP93mQ-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:44:\"kate-trifo-osyibEP93mQ-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:41:\"kate-trifo-osyibEP93mQ-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:43:\"kate-trifo-osyibEP93mQ-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:43:\"kate-trifo-osyibEP93mQ-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:44:\"kate-trifo-osyibEP93mQ-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:44:\"kate-trifo-osyibEP93mQ-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:45:\"kate-trifo-osyibEP93mQ-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"kate-trifo-osyibEP93mQ-unsplash-300x300.jpg\";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:43:\"kate-trifo-osyibEP93mQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"kate-trifo-osyibEP93mQ-unsplash-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:43:\"kate-trifo-osyibEP93mQ-unsplash-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:43:\"kate-trifo-osyibEP93mQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"kate-trifo-osyibEP93mQ-unsplash-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:{}}s:14:\"original_image\";s:35:\"kate-trifo-osyibEP93mQ-unsplash.jpg\";}'),
(763, 353, '_wp_attached_file', '2020/11/chelsea-gates-q0LZnouDey4-unsplash-scaled.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(764, 353, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2020/11/chelsea-gates-q0LZnouDey4-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-q0LZnouDey4-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-q0LZnouDey4-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-q0LZnouDey4-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-q0LZnouDey4-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"chelsea-gates-q0LZnouDey4-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"chelsea-gates-q0LZnouDey4-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-q0LZnouDey4-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"chelsea-gates-q0LZnouDey4-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-q0LZnouDey4-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-q0LZnouDey4-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-q0LZnouDey4-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-q0LZnouDey4-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"chelsea-gates-q0LZnouDey4-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"chelsea-gates-q0LZnouDey4-unsplash-300x300.jpg\";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:46:\"chelsea-gates-q0LZnouDey4-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-q0LZnouDey4-unsplash-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:46:\"chelsea-gates-q0LZnouDey4-unsplash-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:46:\"chelsea-gates-q0LZnouDey4-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-q0LZnouDey4-unsplash-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:{}}s:14:\"original_image\";s:38:\"chelsea-gates-q0LZnouDey4-unsplash.jpg\";}'),
(765, 354, '_wp_attached_file', '2020/11/yesboi-oH35B3XI9qo-unsplash-scaled.jpg'),
(766, 354, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:46:\"2020/11/yesboi-oH35B3XI9qo-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"yesboi-oH35B3XI9qo-unsplash-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"yesboi-oH35B3XI9qo-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"yesboi-oH35B3XI9qo-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"yesboi-oH35B3XI9qo-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"yesboi-oH35B3XI9qo-unsplash-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"yesboi-oH35B3XI9qo-unsplash-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:40:\"yesboi-oH35B3XI9qo-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:37:\"yesboi-oH35B3XI9qo-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:39:\"yesboi-oH35B3XI9qo-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:39:\"yesboi-oH35B3XI9qo-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:40:\"yesboi-oH35B3XI9qo-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:40:\"yesboi-oH35B3XI9qo-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:41:\"yesboi-oH35B3XI9qo-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"yesboi-oH35B3XI9qo-unsplash-300x300.jpg\";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:39:\"yesboi-oH35B3XI9qo-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"yesboi-oH35B3XI9qo-unsplash-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:39:\"yesboi-oH35B3XI9qo-unsplash-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:39:\"yesboi-oH35B3XI9qo-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"yesboi-oH35B3XI9qo-unsplash-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:{}}s:14:\"original_image\";s:31:\"yesboi-oH35B3XI9qo-unsplash.jpg\";}'),
(767, 355, '_wp_attached_file', '2020/11/bailey-mahon-tvBK50X9jqI-unsplash-scaled.jpg'),
(768, 355, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2020/11/bailey-mahon-tvBK50X9jqI-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-tvBK50X9jqI-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"bailey-mahon-tvBK50X9jqI-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-tvBK50X9jqI-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"bailey-mahon-tvBK50X9jqI-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"bailey-mahon-tvBK50X9jqI-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"bailey-mahon-tvBK50X9jqI-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"bailey-mahon-tvBK50X9jqI-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"bailey-mahon-tvBK50X9jqI-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-tvBK50X9jqI-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-tvBK50X9jqI-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"bailey-mahon-tvBK50X9jqI-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"bailey-mahon-tvBK50X9jqI-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"bailey-mahon-tvBK50X9jqI-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"bailey-mahon-tvBK50X9jqI-unsplash-300x300.jpg\";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:45:\"bailey-mahon-tvBK50X9jqI-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-tvBK50X9jqI-unsplash-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:45:\"bailey-mahon-tvBK50X9jqI-unsplash-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:45:\"bailey-mahon-tvBK50X9jqI-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-tvBK50X9jqI-unsplash-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:{}}s:14:\"original_image\";s:37:\"bailey-mahon-tvBK50X9jqI-unsplash.jpg\";}'),
(769, 356, '_wp_attached_file', '2020/11/marc-james-0pH5G6kwq7A-unsplash-scaled.jpg'),
(770, 356, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:50:\"2020/11/marc-james-0pH5G6kwq7A-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"marc-james-0pH5G6kwq7A-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"marc-james-0pH5G6kwq7A-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"marc-james-0pH5G6kwq7A-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"marc-james-0pH5G6kwq7A-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"marc-james-0pH5G6kwq7A-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"marc-james-0pH5G6kwq7A-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:44:\"marc-james-0pH5G6kwq7A-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:41:\"marc-james-0pH5G6kwq7A-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:43:\"marc-james-0pH5G6kwq7A-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:43:\"marc-james-0pH5G6kwq7A-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:44:\"marc-james-0pH5G6kwq7A-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:44:\"marc-james-0pH5G6kwq7A-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:45:\"marc-james-0pH5G6kwq7A-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"marc-james-0pH5G6kwq7A-unsplash-300x300.jpg\";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:43:\"marc-james-0pH5G6kwq7A-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"marc-james-0pH5G6kwq7A-unsplash-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:43:\"marc-james-0pH5G6kwq7A-unsplash-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:43:\"marc-james-0pH5G6kwq7A-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"marc-james-0pH5G6kwq7A-unsplash-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:{}}s:14:\"original_image\";s:35:\"marc-james-0pH5G6kwq7A-unsplash.jpg\";}'),
(771, 357, '_wp_attached_file', '2020/11/caleb-russell-1I-fwrMgMMI-unsplash-scaled.jpg'),
(772, 357, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2020/11/caleb-russell-1I-fwrMgMMI-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"caleb-russell-1I-fwrMgMMI-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"caleb-russell-1I-fwrMgMMI-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"caleb-russell-1I-fwrMgMMI-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"caleb-russell-1I-fwrMgMMI-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"caleb-russell-1I-fwrMgMMI-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"caleb-russell-1I-fwrMgMMI-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"caleb-russell-1I-fwrMgMMI-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"caleb-russell-1I-fwrMgMMI-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"caleb-russell-1I-fwrMgMMI-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"caleb-russell-1I-fwrMgMMI-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"caleb-russell-1I-fwrMgMMI-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"caleb-russell-1I-fwrMgMMI-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"caleb-russell-1I-fwrMgMMI-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"caleb-russell-1I-fwrMgMMI-unsplash-300x300.jpg\";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:46:\"caleb-russell-1I-fwrMgMMI-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"caleb-russell-1I-fwrMgMMI-unsplash-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:46:\"caleb-russell-1I-fwrMgMMI-unsplash-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:46:\"caleb-russell-1I-fwrMgMMI-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"caleb-russell-1I-fwrMgMMI-unsplash-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:{}}s:14:\"original_image\";s:38:\"caleb-russell-1I-fwrMgMMI-unsplash.jpg\";}'),
(773, 358, '_wp_attached_file', '2020/11/jack-castles-x4GX_sxCPnM-unsplash-scaled.jpg'),
(774, 358, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2020/11/jack-castles-x4GX_sxCPnM-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"jack-castles-x4GX_sxCPnM-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"jack-castles-x4GX_sxCPnM-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"jack-castles-x4GX_sxCPnM-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"jack-castles-x4GX_sxCPnM-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"jack-castles-x4GX_sxCPnM-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"jack-castles-x4GX_sxCPnM-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"jack-castles-x4GX_sxCPnM-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"jack-castles-x4GX_sxCPnM-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"jack-castles-x4GX_sxCPnM-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"jack-castles-x4GX_sxCPnM-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"jack-castles-x4GX_sxCPnM-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"jack-castles-x4GX_sxCPnM-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"jack-castles-x4GX_sxCPnM-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"jack-castles-x4GX_sxCPnM-unsplash-300x300.jpg\";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:45:\"jack-castles-x4GX_sxCPnM-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"jack-castles-x4GX_sxCPnM-unsplash-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:45:\"jack-castles-x4GX_sxCPnM-unsplash-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:45:\"jack-castles-x4GX_sxCPnM-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"jack-castles-x4GX_sxCPnM-unsplash-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:{}}s:14:\"original_image\";s:37:\"jack-castles-x4GX_sxCPnM-unsplash.jpg\";}'),
(775, 359, '_wp_attached_file', '2020/11/lochlainn-riordan-JOfW3MPjVp4-unsplash-scaled.jpg'),
(776, 359, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2020/11/lochlainn-riordan-JOfW3MPjVp4-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:51:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:48:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:51:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:51:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:52:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:50:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-300x300.jpg\";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:50:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-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:50:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-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:50:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-JOfW3MPjVp4-unsplash-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:{}}s:14:\"original_image\";s:42:\"lochlainn-riordan-JOfW3MPjVp4-unsplash.jpg\";}'),
(777, 360, '_wp_attached_file', '2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg'),
(778, 360, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-300x300.jpg\";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:45:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-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:45:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-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:45:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"bailey-mahon-Bgw2ZeZIIUw-unsplash-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:{}}s:14:\"original_image\";s:37:\"bailey-mahon-Bgw2ZeZIIUw-unsplash.jpg\";}'),
(779, 361, '_wp_attached_file', '2020/11/lochlainn-riordan-G6CR8v_bts0-unsplash-scaled.jpg'),
(780, 361, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1600;s:4:\"file\";s:57:\"2020/11/lochlainn-riordan-G6CR8v_bts0-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"lochlainn-riordan-G6CR8v_bts0-unsplash-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"lochlainn-riordan-G6CR8v_bts0-unsplash-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"lochlainn-riordan-G6CR8v_bts0-unsplash-2048x1280.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:51:\"lochlainn-riordan-G6CR8v_bts0-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:48:\"lochlainn-riordan-G6CR8v_bts0-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:51:\"lochlainn-riordan-G6CR8v_bts0-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:51:\"lochlainn-riordan-G6CR8v_bts0-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:52:\"lochlainn-riordan-G6CR8v_bts0-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-300x300.jpg\";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:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-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:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-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:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-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:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-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:50:\"lochlainn-riordan-G6CR8v_bts0-unsplash-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:{}}s:14:\"original_image\";s:42:\"lochlainn-riordan-G6CR8v_bts0-unsplash.jpg\";}'),
(781, 362, '_wp_attached_file', '2020/11/loren-gu-jfDp9VzJA3Y-unsplash-scaled.jpg'),
(782, 362, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:48:\"2020/11/loren-gu-jfDp9VzJA3Y-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"loren-gu-jfDp9VzJA3Y-unsplash-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"loren-gu-jfDp9VzJA3Y-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"loren-gu-jfDp9VzJA3Y-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"loren-gu-jfDp9VzJA3Y-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"loren-gu-jfDp9VzJA3Y-unsplash-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"loren-gu-jfDp9VzJA3Y-unsplash-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:42:\"loren-gu-jfDp9VzJA3Y-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:39:\"loren-gu-jfDp9VzJA3Y-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:41:\"loren-gu-jfDp9VzJA3Y-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:41:\"loren-gu-jfDp9VzJA3Y-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:42:\"loren-gu-jfDp9VzJA3Y-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:42:\"loren-gu-jfDp9VzJA3Y-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:43:\"loren-gu-jfDp9VzJA3Y-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"loren-gu-jfDp9VzJA3Y-unsplash-300x300.jpg\";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:41:\"loren-gu-jfDp9VzJA3Y-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"loren-gu-jfDp9VzJA3Y-unsplash-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:41:\"loren-gu-jfDp9VzJA3Y-unsplash-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:41:\"loren-gu-jfDp9VzJA3Y-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:41:\"loren-gu-jfDp9VzJA3Y-unsplash-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:{}}s:14:\"original_image\";s:33:\"loren-gu-jfDp9VzJA3Y-unsplash.jpg\";}'),
(783, 363, '_wp_attached_file', '2020/11/caleb-russell-mKwBMtDSZes-unsplash-scaled.jpg'),
(784, 363, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2020/11/caleb-russell-mKwBMtDSZes-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"caleb-russell-mKwBMtDSZes-unsplash-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"caleb-russell-mKwBMtDSZes-unsplash-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"caleb-russell-mKwBMtDSZes-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"caleb-russell-mKwBMtDSZes-unsplash-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"caleb-russell-mKwBMtDSZes-unsplash-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"caleb-russell-mKwBMtDSZes-unsplash-1639x2048.jpg\";s:5:\"width\";i:1639;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"caleb-russell-mKwBMtDSZes-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"caleb-russell-mKwBMtDSZes-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"caleb-russell-mKwBMtDSZes-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"caleb-russell-mKwBMtDSZes-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"caleb-russell-mKwBMtDSZes-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"caleb-russell-mKwBMtDSZes-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"caleb-russell-mKwBMtDSZes-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"caleb-russell-mKwBMtDSZes-unsplash-300x300.jpg\";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:46:\"caleb-russell-mKwBMtDSZes-unsplash-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"caleb-russell-mKwBMtDSZes-unsplash-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:46:\"caleb-russell-mKwBMtDSZes-unsplash-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:46:\"caleb-russell-mKwBMtDSZes-unsplash-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"caleb-russell-mKwBMtDSZes-unsplash-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:{}}s:14:\"original_image\";s:38:\"caleb-russell-mKwBMtDSZes-unsplash.jpg\";}'),
(785, 364, '_wp_attached_file', '2020/11/chelsea-gates-OGWfrVITyrM-unsplash-scaled.jpg'),
(786, 364, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2020/11/chelsea-gates-OGWfrVITyrM-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-OGWfrVITyrM-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-OGWfrVITyrM-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-OGWfrVITyrM-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-OGWfrVITyrM-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"chelsea-gates-OGWfrVITyrM-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"chelsea-gates-OGWfrVITyrM-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-OGWfrVITyrM-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"chelsea-gates-OGWfrVITyrM-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-OGWfrVITyrM-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-OGWfrVITyrM-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-OGWfrVITyrM-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-OGWfrVITyrM-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"chelsea-gates-OGWfrVITyrM-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"chelsea-gates-OGWfrVITyrM-unsplash-300x300.jpg\";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:46:\"chelsea-gates-OGWfrVITyrM-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-OGWfrVITyrM-unsplash-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:46:\"chelsea-gates-OGWfrVITyrM-unsplash-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:46:\"chelsea-gates-OGWfrVITyrM-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-OGWfrVITyrM-unsplash-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:{}}s:14:\"original_image\";s:38:\"chelsea-gates-OGWfrVITyrM-unsplash.jpg\";}'),
(787, 365, '_wp_attached_file', '2020/11/chelsea-gates-0_IJ2OzCeIc-unsplash-scaled.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(788, 365, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2020/11/chelsea-gates-0_IJ2OzCeIc-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-0_IJ2OzCeIc-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-0_IJ2OzCeIc-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-0_IJ2OzCeIc-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-0_IJ2OzCeIc-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"chelsea-gates-0_IJ2OzCeIc-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"chelsea-gates-0_IJ2OzCeIc-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-0_IJ2OzCeIc-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"chelsea-gates-0_IJ2OzCeIc-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-0_IJ2OzCeIc-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-0_IJ2OzCeIc-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-0_IJ2OzCeIc-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"chelsea-gates-0_IJ2OzCeIc-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"chelsea-gates-0_IJ2OzCeIc-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"chelsea-gates-0_IJ2OzCeIc-unsplash-300x300.jpg\";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:46:\"chelsea-gates-0_IJ2OzCeIc-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-0_IJ2OzCeIc-unsplash-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:46:\"chelsea-gates-0_IJ2OzCeIc-unsplash-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:46:\"chelsea-gates-0_IJ2OzCeIc-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"chelsea-gates-0_IJ2OzCeIc-unsplash-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:{}}s:14:\"original_image\";s:38:\"chelsea-gates-0_IJ2OzCeIc-unsplash.jpg\";}'),
(789, 366, '_wp_attached_file', '2020/11/patrick-ryan-5EtJJoxJ5pY-unsplash-scaled.jpg'),
(790, 366, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1084;s:4:\"file\";s:52:\"2020/11/patrick-ryan-5EtJJoxJ5pY-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"patrick-ryan-5EtJJoxJ5pY-unsplash-1024x433.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-768x325.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"patrick-ryan-5EtJJoxJ5pY-unsplash-1536x650.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"patrick-ryan-5EtJJoxJ5pY-unsplash-2048x867.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:867;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"patrick-ryan-5EtJJoxJ5pY-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"patrick-ryan-5EtJJoxJ5pY-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"patrick-ryan-5EtJJoxJ5pY-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"patrick-ryan-5EtJJoxJ5pY-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"patrick-ryan-5EtJJoxJ5pY-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-300x300.jpg\";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:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-600x254.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-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:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-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:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-600x254.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"patrick-ryan-5EtJJoxJ5pY-unsplash-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:{}}s:14:\"original_image\";s:37:\"patrick-ryan-5EtJJoxJ5pY-unsplash.jpg\";}'),
(791, 367, '_wp_attached_file', '2020/11/matt-barrett-Lk_76YmymWo-unsplash-scaled.jpg'),
(792, 367, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2020/11/matt-barrett-Lk_76YmymWo-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"matt-barrett-Lk_76YmymWo-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"matt-barrett-Lk_76YmymWo-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"matt-barrett-Lk_76YmymWo-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"matt-barrett-Lk_76YmymWo-unsplash-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:47:\"matt-barrett-Lk_76YmymWo-unsplash-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:47:\"matt-barrett-Lk_76YmymWo-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"matt-barrett-Lk_76YmymWo-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"matt-barrett-Lk_76YmymWo-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"matt-barrett-Lk_76YmymWo-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"matt-barrett-Lk_76YmymWo-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"matt-barrett-Lk_76YmymWo-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"matt-barrett-Lk_76YmymWo-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"matt-barrett-Lk_76YmymWo-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"matt-barrett-Lk_76YmymWo-unsplash-300x300.jpg\";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:45:\"matt-barrett-Lk_76YmymWo-unsplash-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:45:\"matt-barrett-Lk_76YmymWo-unsplash-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:45:\"matt-barrett-Lk_76YmymWo-unsplash-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:45:\"matt-barrett-Lk_76YmymWo-unsplash-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:45:\"matt-barrett-Lk_76YmymWo-unsplash-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:{}}s:14:\"original_image\";s:37:\"matt-barrett-Lk_76YmymWo-unsplash.jpg\";}'),
(793, 368, '_wp_attached_file', '2020/11/carles-rabada-yMF35mdqM3Q-unsplash-scaled.jpg'),
(794, 368, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1439;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2020/11/carles-rabada-yMF35mdqM3Q-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yMF35mdqM3Q-unsplash-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yMF35mdqM3Q-unsplash-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yMF35mdqM3Q-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yMF35mdqM3Q-unsplash-768x1366.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yMF35mdqM3Q-unsplash-863x1536.jpg\";s:5:\"width\";i:863;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"carles-rabada-yMF35mdqM3Q-unsplash-1151x2048.jpg\";s:5:\"width\";i:1151;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yMF35mdqM3Q-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"carles-rabada-yMF35mdqM3Q-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yMF35mdqM3Q-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yMF35mdqM3Q-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yMF35mdqM3Q-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yMF35mdqM3Q-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"carles-rabada-yMF35mdqM3Q-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"carles-rabada-yMF35mdqM3Q-unsplash-300x300.jpg\";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:47:\"carles-rabada-yMF35mdqM3Q-unsplash-600x1067.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yMF35mdqM3Q-unsplash-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:46:\"carles-rabada-yMF35mdqM3Q-unsplash-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:47:\"carles-rabada-yMF35mdqM3Q-unsplash-600x1067.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yMF35mdqM3Q-unsplash-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:{}}s:14:\"original_image\";s:38:\"carles-rabada-yMF35mdqM3Q-unsplash.jpg\";}'),
(795, 369, '_wp_attached_file', '2020/11/marianne-heino-pV8fZ0qUe84-unsplash-scaled.jpg'),
(796, 369, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1702;s:4:\"file\";s:54:\"2020/11/marianne-heino-pV8fZ0qUe84-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"marianne-heino-pV8fZ0qUe84-unsplash-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"marianne-heino-pV8fZ0qUe84-unsplash-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"marianne-heino-pV8fZ0qUe84-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"marianne-heino-pV8fZ0qUe84-unsplash-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"marianne-heino-pV8fZ0qUe84-unsplash-1536x1021.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1021;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"marianne-heino-pV8fZ0qUe84-unsplash-2048x1362.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1362;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:48:\"marianne-heino-pV8fZ0qUe84-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:45:\"marianne-heino-pV8fZ0qUe84-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:47:\"marianne-heino-pV8fZ0qUe84-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:47:\"marianne-heino-pV8fZ0qUe84-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:48:\"marianne-heino-pV8fZ0qUe84-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:48:\"marianne-heino-pV8fZ0qUe84-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:49:\"marianne-heino-pV8fZ0qUe84-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"marianne-heino-pV8fZ0qUe84-unsplash-300x300.jpg\";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:47:\"marianne-heino-pV8fZ0qUe84-unsplash-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:47:\"marianne-heino-pV8fZ0qUe84-unsplash-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:47:\"marianne-heino-pV8fZ0qUe84-unsplash-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:47:\"marianne-heino-pV8fZ0qUe84-unsplash-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:47:\"marianne-heino-pV8fZ0qUe84-unsplash-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:{}}s:14:\"original_image\";s:39:\"marianne-heino-pV8fZ0qUe84-unsplash.jpg\";}'),
(797, 370, '_wp_attached_file', '2020/11/jordan-evtWtv0i-6E-unsplash-scaled.jpg'),
(798, 370, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:46:\"2020/11/jordan-evtWtv0i-6E-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"jordan-evtWtv0i-6E-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"jordan-evtWtv0i-6E-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"jordan-evtWtv0i-6E-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"jordan-evtWtv0i-6E-unsplash-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:41:\"jordan-evtWtv0i-6E-unsplash-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:41:\"jordan-evtWtv0i-6E-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:40:\"jordan-evtWtv0i-6E-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:37:\"jordan-evtWtv0i-6E-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:39:\"jordan-evtWtv0i-6E-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:39:\"jordan-evtWtv0i-6E-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:40:\"jordan-evtWtv0i-6E-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:40:\"jordan-evtWtv0i-6E-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:41:\"jordan-evtWtv0i-6E-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"jordan-evtWtv0i-6E-unsplash-300x300.jpg\";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:39:\"jordan-evtWtv0i-6E-unsplash-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:39:\"jordan-evtWtv0i-6E-unsplash-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:39:\"jordan-evtWtv0i-6E-unsplash-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:39:\"jordan-evtWtv0i-6E-unsplash-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:39:\"jordan-evtWtv0i-6E-unsplash-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:{}}s:14:\"original_image\";s:31:\"jordan-evtWtv0i-6E-unsplash.jpg\";}'),
(799, 371, '_wp_attached_file', '2020/11/chris-fuller-fU_WckUagZA-unsplash-scaled.jpg'),
(800, 371, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2020/11/chris-fuller-fU_WckUagZA-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"chris-fuller-fU_WckUagZA-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"chris-fuller-fU_WckUagZA-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"chris-fuller-fU_WckUagZA-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"chris-fuller-fU_WckUagZA-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"chris-fuller-fU_WckUagZA-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"chris-fuller-fU_WckUagZA-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"chris-fuller-fU_WckUagZA-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"chris-fuller-fU_WckUagZA-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"chris-fuller-fU_WckUagZA-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"chris-fuller-fU_WckUagZA-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"chris-fuller-fU_WckUagZA-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"chris-fuller-fU_WckUagZA-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"chris-fuller-fU_WckUagZA-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"chris-fuller-fU_WckUagZA-unsplash-300x300.jpg\";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:45:\"chris-fuller-fU_WckUagZA-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"chris-fuller-fU_WckUagZA-unsplash-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:45:\"chris-fuller-fU_WckUagZA-unsplash-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:45:\"chris-fuller-fU_WckUagZA-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"chris-fuller-fU_WckUagZA-unsplash-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:{}}s:14:\"original_image\";s:37:\"chris-fuller-fU_WckUagZA-unsplash.jpg\";}'),
(801, 372, '_wp_attached_file', '2020/11/carles-rabada-jySre5zSJVs-unsplash-scaled.jpg'),
(802, 372, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1439;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2020/11/carles-rabada-jySre5zSJVs-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"carles-rabada-jySre5zSJVs-unsplash-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"carles-rabada-jySre5zSJVs-unsplash-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"carles-rabada-jySre5zSJVs-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"carles-rabada-jySre5zSJVs-unsplash-768x1366.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"carles-rabada-jySre5zSJVs-unsplash-863x1536.jpg\";s:5:\"width\";i:863;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"carles-rabada-jySre5zSJVs-unsplash-1151x2048.jpg\";s:5:\"width\";i:1151;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"carles-rabada-jySre5zSJVs-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"carles-rabada-jySre5zSJVs-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"carles-rabada-jySre5zSJVs-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"carles-rabada-jySre5zSJVs-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"carles-rabada-jySre5zSJVs-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"carles-rabada-jySre5zSJVs-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"carles-rabada-jySre5zSJVs-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"carles-rabada-jySre5zSJVs-unsplash-300x300.jpg\";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:47:\"carles-rabada-jySre5zSJVs-unsplash-600x1067.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"carles-rabada-jySre5zSJVs-unsplash-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:46:\"carles-rabada-jySre5zSJVs-unsplash-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:47:\"carles-rabada-jySre5zSJVs-unsplash-600x1067.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"carles-rabada-jySre5zSJVs-unsplash-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:{}}s:14:\"original_image\";s:38:\"carles-rabada-jySre5zSJVs-unsplash.jpg\";}'),
(803, 373, '_wp_attached_file', '2020/11/carles-rabada-yKAgTzz7jWk-unsplash-scaled.jpg'),
(804, 373, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1439;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2020/11/carles-rabada-yKAgTzz7jWk-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yKAgTzz7jWk-unsplash-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yKAgTzz7jWk-unsplash-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yKAgTzz7jWk-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yKAgTzz7jWk-unsplash-768x1366.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yKAgTzz7jWk-unsplash-863x1536.jpg\";s:5:\"width\";i:863;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"carles-rabada-yKAgTzz7jWk-unsplash-1151x2048.jpg\";s:5:\"width\";i:1151;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yKAgTzz7jWk-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"carles-rabada-yKAgTzz7jWk-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yKAgTzz7jWk-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yKAgTzz7jWk-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yKAgTzz7jWk-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"carles-rabada-yKAgTzz7jWk-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"carles-rabada-yKAgTzz7jWk-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"carles-rabada-yKAgTzz7jWk-unsplash-300x300.jpg\";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:47:\"carles-rabada-yKAgTzz7jWk-unsplash-600x1067.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yKAgTzz7jWk-unsplash-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:46:\"carles-rabada-yKAgTzz7jWk-unsplash-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:47:\"carles-rabada-yKAgTzz7jWk-unsplash-600x1067.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"carles-rabada-yKAgTzz7jWk-unsplash-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:{}}s:14:\"original_image\";s:38:\"carles-rabada-yKAgTzz7jWk-unsplash.jpg\";}'),
(805, 374, '_wp_attached_file', '2020/11/sean-sinclair-k0JNJRbrJAs-unsplash-scaled.jpg'),
(806, 374, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:53:\"2020/11/sean-sinclair-k0JNJRbrJAs-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"sean-sinclair-k0JNJRbrJAs-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-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:48:\"sean-sinclair-k0JNJRbrJAs-unsplash-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:48:\"sean-sinclair-k0JNJRbrJAs-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"sean-sinclair-k0JNJRbrJAs-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"sean-sinclair-k0JNJRbrJAs-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"sean-sinclair-k0JNJRbrJAs-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"sean-sinclair-k0JNJRbrJAs-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"sean-sinclair-k0JNJRbrJAs-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-300x300.jpg\";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:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-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:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-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:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-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:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-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:46:\"sean-sinclair-k0JNJRbrJAs-unsplash-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:{}}s:14:\"original_image\";s:38:\"sean-sinclair-k0JNJRbrJAs-unsplash.jpg\";}'),
(807, 375, '_wp_attached_file', '2020/11/sean-sinclair-Z3iQro6aRQE-unsplash-scaled.jpg'),
(808, 375, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:53:\"2020/11/sean-sinclair-Z3iQro6aRQE-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"sean-sinclair-Z3iQro6aRQE-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-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:48:\"sean-sinclair-Z3iQro6aRQE-unsplash-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:48:\"sean-sinclair-Z3iQro6aRQE-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"sean-sinclair-Z3iQro6aRQE-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"sean-sinclair-Z3iQro6aRQE-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"sean-sinclair-Z3iQro6aRQE-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"sean-sinclair-Z3iQro6aRQE-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"sean-sinclair-Z3iQro6aRQE-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-300x300.jpg\";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:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-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:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-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:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-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:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-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:46:\"sean-sinclair-Z3iQro6aRQE-unsplash-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:{}}s:14:\"original_image\";s:38:\"sean-sinclair-Z3iQro6aRQE-unsplash.jpg\";}'),
(809, 376, '_wpb_shortcodes_custom_css', '.vc_custom_1605274098742{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274489148{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/kate-trifo-osyibEP93mQ-unsplash-scaled.jpg?id=352) !important;}'),
(810, 377, '_wpb_shortcodes_custom_css', '.vc_custom_1605274662534{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274713848{margin-top: 120px !important;margin-bottom: 120px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(811, 378, '_wpb_shortcodes_custom_css', '.vc_custom_1605274662534{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274906384{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg?id=360) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}'),
(812, 379, '_wpb_shortcodes_custom_css', '.vc_custom_1605274662534{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274906384{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg?id=360) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(813, 203, '_wp_attachment_backup_sizes', 'a:19:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:49:\"39515534_307601786662565_527945518987345920_n.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:58:\"39515534_307601786662565_527945518987345920_n-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:58:\"39515534_307601786662565_527945518987345920_n-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_blog-orig\";a:4:{s:4:\"file\";s:58:\"39515534_307601786662565_527945518987345920_n-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_mini-orig\";a:4:{s:4:\"file\";s:55:\"39515534_307601786662565_527945518987345920_n-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"maple_portfolio-orig\";a:4:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"maple_regular-orig\";a:4:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_wide-orig\";a:4:{s:4:\"file\";s:58:\"39515534_307601786662565_527945518987345920_n-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_tall-orig\";a:4:{s:4:\"file\";s:58:\"39515534_307601786662565_527945518987345920_n-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"maple_widetall-orig\";a:4:{s:4:\"file\";s:59:\"39515534_307601786662565_527945518987345920_n-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-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:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:57:\"39515534_307601786662565_527945518987345920_n-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}'),
(814, 380, '_wpb_shortcodes_custom_css', '.vc_custom_1605276011668{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605275948357{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg?id=360) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(815, 381, '_wp_attached_file', '2020/11/gabriel-tan-_5-kOWfzHWM-unsplash-scaled.jpg'),
(816, 381, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:51:\"2020/11/gabriel-tan-_5-kOWfzHWM-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"gabriel-tan-_5-kOWfzHWM-unsplash-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"gabriel-tan-_5-kOWfzHWM-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"gabriel-tan-_5-kOWfzHWM-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"gabriel-tan-_5-kOWfzHWM-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"gabriel-tan-_5-kOWfzHWM-unsplash-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"gabriel-tan-_5-kOWfzHWM-unsplash-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:45:\"gabriel-tan-_5-kOWfzHWM-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:42:\"gabriel-tan-_5-kOWfzHWM-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:44:\"gabriel-tan-_5-kOWfzHWM-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:44:\"gabriel-tan-_5-kOWfzHWM-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:45:\"gabriel-tan-_5-kOWfzHWM-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:45:\"gabriel-tan-_5-kOWfzHWM-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:46:\"gabriel-tan-_5-kOWfzHWM-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"gabriel-tan-_5-kOWfzHWM-unsplash-300x300.jpg\";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:44:\"gabriel-tan-_5-kOWfzHWM-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"gabriel-tan-_5-kOWfzHWM-unsplash-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:44:\"gabriel-tan-_5-kOWfzHWM-unsplash-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:44:\"gabriel-tan-_5-kOWfzHWM-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"gabriel-tan-_5-kOWfzHWM-unsplash-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:{}}s:14:\"original_image\";s:36:\"gabriel-tan-_5-kOWfzHWM-unsplash.jpg\";}'),
(817, 382, '_wp_attached_file', '2020/11/jane-slack-smith-ue_rRo0nKbc-unsplash-scaled.jpg'),
(818, 382, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2020/11/jane-slack-smith-ue_rRo0nKbc-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"jane-slack-smith-ue_rRo0nKbc-unsplash-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"jane-slack-smith-ue_rRo0nKbc-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"jane-slack-smith-ue_rRo0nKbc-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"jane-slack-smith-ue_rRo0nKbc-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"jane-slack-smith-ue_rRo0nKbc-unsplash-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"jane-slack-smith-ue_rRo0nKbc-unsplash-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:50:\"jane-slack-smith-ue_rRo0nKbc-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:47:\"jane-slack-smith-ue_rRo0nKbc-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:49:\"jane-slack-smith-ue_rRo0nKbc-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:49:\"jane-slack-smith-ue_rRo0nKbc-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:50:\"jane-slack-smith-ue_rRo0nKbc-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:50:\"jane-slack-smith-ue_rRo0nKbc-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:51:\"jane-slack-smith-ue_rRo0nKbc-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"jane-slack-smith-ue_rRo0nKbc-unsplash-300x300.jpg\";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:49:\"jane-slack-smith-ue_rRo0nKbc-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"jane-slack-smith-ue_rRo0nKbc-unsplash-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:49:\"jane-slack-smith-ue_rRo0nKbc-unsplash-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:49:\"jane-slack-smith-ue_rRo0nKbc-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"jane-slack-smith-ue_rRo0nKbc-unsplash-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:{}}s:14:\"original_image\";s:41:\"jane-slack-smith-ue_rRo0nKbc-unsplash.jpg\";}'),
(819, 383, '_wp_attached_file', '2020/11/alli-carr-ZVPlJG6xs_U-unsplash-scaled.jpg'),
(820, 383, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:49:\"2020/11/alli-carr-ZVPlJG6xs_U-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"alli-carr-ZVPlJG6xs_U-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"alli-carr-ZVPlJG6xs_U-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"alli-carr-ZVPlJG6xs_U-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"alli-carr-ZVPlJG6xs_U-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"alli-carr-ZVPlJG6xs_U-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:44:\"alli-carr-ZVPlJG6xs_U-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:43:\"alli-carr-ZVPlJG6xs_U-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:40:\"alli-carr-ZVPlJG6xs_U-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:42:\"alli-carr-ZVPlJG6xs_U-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:42:\"alli-carr-ZVPlJG6xs_U-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:43:\"alli-carr-ZVPlJG6xs_U-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:43:\"alli-carr-ZVPlJG6xs_U-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:44:\"alli-carr-ZVPlJG6xs_U-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"alli-carr-ZVPlJG6xs_U-unsplash-300x300.jpg\";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:42:\"alli-carr-ZVPlJG6xs_U-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"alli-carr-ZVPlJG6xs_U-unsplash-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:42:\"alli-carr-ZVPlJG6xs_U-unsplash-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:42:\"alli-carr-ZVPlJG6xs_U-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:42:\"alli-carr-ZVPlJG6xs_U-unsplash-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:{}}s:14:\"original_image\";s:34:\"alli-carr-ZVPlJG6xs_U-unsplash.jpg\";}'),
(821, 384, '_wp_attached_file', '2020/11/denise-jans-gmtAa0Q5MI-unsplash-scaled.jpg'),
(822, 384, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:50:\"2020/11/denise-jans-gmtAa0Q5MI-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"denise-jans-gmtAa0Q5MI-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"denise-jans-gmtAa0Q5MI-unsplash-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"denise-jans-gmtAa0Q5MI-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"denise-jans-gmtAa0Q5MI-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"denise-jans-gmtAa0Q5MI-unsplash-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"denise-jans-gmtAa0Q5MI-unsplash-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:44:\"denise-jans-gmtAa0Q5MI-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:41:\"denise-jans-gmtAa0Q5MI-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:43:\"denise-jans-gmtAa0Q5MI-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:43:\"denise-jans-gmtAa0Q5MI-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:44:\"denise-jans-gmtAa0Q5MI-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:44:\"denise-jans-gmtAa0Q5MI-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:45:\"denise-jans-gmtAa0Q5MI-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"denise-jans-gmtAa0Q5MI-unsplash-300x300.jpg\";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:43:\"denise-jans-gmtAa0Q5MI-unsplash-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:43:\"denise-jans-gmtAa0Q5MI-unsplash-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:43:\"denise-jans-gmtAa0Q5MI-unsplash-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:43:\"denise-jans-gmtAa0Q5MI-unsplash-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:43:\"denise-jans-gmtAa0Q5MI-unsplash-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:{}}s:14:\"original_image\";s:35:\"denise-jans-gmtAa0Q5MI-unsplash.jpg\";}'),
(823, 385, '_wp_attached_file', '2020/11/lennon-cheng-1DBorbXxwbs-unsplash-scaled.jpg'),
(824, 385, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2049;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2020/11/lennon-cheng-1DBorbXxwbs-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"lennon-cheng-1DBorbXxwbs-unsplash-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"lennon-cheng-1DBorbXxwbs-unsplash-820x1024.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"lennon-cheng-1DBorbXxwbs-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"lennon-cheng-1DBorbXxwbs-unsplash-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"lennon-cheng-1DBorbXxwbs-unsplash-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"lennon-cheng-1DBorbXxwbs-unsplash-1639x2048.jpg\";s:5:\"width\";i:1639;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"lennon-cheng-1DBorbXxwbs-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"lennon-cheng-1DBorbXxwbs-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"lennon-cheng-1DBorbXxwbs-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"lennon-cheng-1DBorbXxwbs-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"lennon-cheng-1DBorbXxwbs-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"lennon-cheng-1DBorbXxwbs-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"lennon-cheng-1DBorbXxwbs-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"lennon-cheng-1DBorbXxwbs-unsplash-300x300.jpg\";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:45:\"lennon-cheng-1DBorbXxwbs-unsplash-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"lennon-cheng-1DBorbXxwbs-unsplash-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:45:\"lennon-cheng-1DBorbXxwbs-unsplash-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:45:\"lennon-cheng-1DBorbXxwbs-unsplash-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"lennon-cheng-1DBorbXxwbs-unsplash-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:{}}s:14:\"original_image\";s:37:\"lennon-cheng-1DBorbXxwbs-unsplash.jpg\";}'),
(825, 386, '_wp_attached_file', '2020/11/brisbane-local-marketing-nHiPAtsZcCo-unsplash-scaled.jpg'),
(826, 386, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1438;s:4:\"file\";s:64:\"2020/11/brisbane-local-marketing-nHiPAtsZcCo-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:58:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-1536x863.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:863;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:59:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-2048x1150.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:58:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:55:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:58:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:58:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:59:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-300x300.jpg\";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:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-600x337.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-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:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-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:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-600x337.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash-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:{}}s:14:\"original_image\";s:49:\"brisbane-local-marketing-nHiPAtsZcCo-unsplash.jpg\";}'),
(827, 387, '_wp_attached_file', '2020/11/brisbane-local-marketing-RJII3O7CTeo-unsplash-scaled.jpg'),
(828, 387, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:64:\"2020/11/brisbane-local-marketing-RJII3O7CTeo-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-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:59:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-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:59:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:58:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:55:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:58:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:58:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:59:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-300x300.jpg\";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:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-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:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-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:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-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:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-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:57:\"brisbane-local-marketing-RJII3O7CTeo-unsplash-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:{}}s:14:\"original_image\";s:49:\"brisbane-local-marketing-RJII3O7CTeo-unsplash.jpg\";}'),
(829, 388, '_wp_attached_file', '2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg'),
(830, 388, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:56:\"2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-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:51:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-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:51:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:50:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:47:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:50:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:50:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:51:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-300x300.jpg\";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:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-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:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-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:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-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:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-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:49:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash-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:{}}s:14:\"original_image\";s:41:\"jamie-mcglinchey-q19ZRZE4tGI-unsplash.jpg\";}'),
(831, 390, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(832, 391, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(833, 392, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(834, 393, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(835, 394, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(836, 395, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(837, 396, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(838, 397, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(839, 398, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(840, 399, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(841, 400, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(842, 401, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(843, 402, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(844, 403, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1409832387950{margin-bottom: 0px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}.vc_custom_1447633643271{margin-bottom: 40px !important;}'),
(845, 407, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(846, 408, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(847, 409, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(848, 410, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(849, 411, '_wp_attached_file', '2020/11/Surfer_edited.jpg'),
(850, 411, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:492;s:4:\"file\";s:25:\"2020/11/Surfer_edited.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Surfer_edited-300x144.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Surfer_edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Surfer_edited-768x369.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:26:\"Surfer_edited-1000x492.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:23:\"Surfer_edited-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:25:\"Surfer_edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:25:\"Surfer_edited-500x492.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:26:\"Surfer_edited-1000x492.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:25:\"Surfer_edited-500x492.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:26:\"Surfer_edited-1000x492.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Surfer_edited-300x300.jpg\";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:\"Surfer_edited-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:25:\"Surfer_edited-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:\"Surfer_edited-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:\"Surfer_edited-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:25:\"Surfer_edited-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:{}}}'),
(851, 412, '_wpb_shortcodes_custom_css', '.vc_custom_1605316387037{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605275948357{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg?id=360) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(852, 413, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605275948357{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg?id=360) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(853, 416, '_wp_attached_file', 'revslider/macbookpro.png'),
(854, 416, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:600;s:4:\"file\";s:24:\"revslider/macbookpro.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"macbookpro-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"macbookpro-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"macbookpro-768x461.png\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:23:\"macbookpro-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:20:\"macbookpro-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:22:\"macbookpro-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:22:\"macbookpro-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:23:\"macbookpro-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:22:\"macbookpro-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"macbookpro-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:22:\"macbookpro-600x360.png\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"macbookpro-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:22:\"macbookpro-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:22:\"macbookpro-600x360.png\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"macbookpro-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:{}}}'),
(855, 417, '_wp_attached_file', 'revslider/screen1_content.jpg'),
(856, 417, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:654;s:6:\"height\";i:409;s:4:\"file\";s:29:\"revslider/screen1_content.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"screen1_content-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"screen1_content-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:25:\"screen1_content-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:27:\"screen1_content-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:27:\"screen1_content-500x409.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:27:\"screen1_content-500x409.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"screen1_content-300x300.jpg\";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:\"screen1_content-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:27:\"screen1_content-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:\"screen1_content-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:\"screen1_content-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:27:\"screen1_content-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:{}}}'),
(857, 418, '_wp_attached_file', 'revslider/ipad.png'),
(858, 418, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:430;s:6:\"height\";i:540;s:4:\"file\";s:18:\"revslider/ipad.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"ipad-239x300.png\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"ipad-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:14:\"ipad-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:16:\"ipad-430x400.png\";s:5:\"width\";i:430;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:16:\"ipad-430x500.png\";s:5:\"width\";i:430;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:16:\"ipad-430x500.png\";s:5:\"width\";i:430;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"ipad-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:16:\"ipad-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:\"ipad-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:16:\"ipad-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:{}}}'),
(859, 419, '_wp_attached_file', 'revslider/owl1.jpg'),
(860, 419, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:290;s:6:\"height\";i:372;s:4:\"file\";s:18:\"revslider/owl1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"owl1-234x300.jpg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"owl1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:14:\"owl1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"owl1-290x300.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"owl1-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:\"owl1-290x300.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"owl1-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:{}}}'),
(861, 420, '_wp_attached_file', 'revslider/ihpone.png'),
(862, 420, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:260;s:6:\"height\";i:450;s:4:\"file\";s:20:\"revslider/ihpone.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ihpone-173x300.png\";s:5:\"width\";i:173;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ihpone-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:16:\"ihpone-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:18:\"ihpone-260x400.png\";s:5:\"width\";i:260;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"ihpone-260x300.png\";s:5:\"width\";i:260;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"ihpone-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:\"ihpone-260x300.png\";s:5:\"width\";i:260;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"ihpone-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:{}}}'),
(863, 421, '_wp_attached_file', 'revslider/owl2.jpg'),
(864, 421, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:170;s:6:\"height\";i:286;s:4:\"file\";s:18:\"revslider/owl2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"owl2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:14:\"owl2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"owl2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"owl2-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:{}}}'),
(865, 422, '_wp_attached_file', 'revslider/light1.jpg'),
(866, 422, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:20:\"revslider/light1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"light1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"light1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"light1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"light1-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:20:\"light1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:19:\"light1-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:16:\"light1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:18:\"light1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:18:\"light1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:19:\"light1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:19:\"light1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:20:\"light1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"light1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"light1-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:18:\"light1-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:\"light1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"light1-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:18:\"light1-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:{}}}'),
(867, 423, '_wp_attached_file', 'revslider/lighton1.png'),
(868, 423, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:22:\"revslider/lighton1.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"lighton1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"lighton1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"lighton1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"lighton1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"lighton1-1536x1024.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:21:\"lighton1-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:18:\"lighton1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:20:\"lighton1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:20:\"lighton1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:21:\"lighton1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:21:\"lighton1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:22:\"lighton1-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"lighton1-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:20:\"lighton1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"lighton1-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:20:\"lighton1-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:20:\"lighton1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"lighton1-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:{}}}'),
(869, 424, '_wp_attached_file', 'revslider/arrow4.png'),
(870, 424, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:121;s:6:\"height\";i:53;s:4:\"file\";s:20:\"revslider/arrow4.png\";s:5:\"sizes\";a:3:{s:10:\"maple_mini\";a:4:{s:4:\"file\";s:16:\"arrow4-80x53.png\";s:5:\"width\";i:80;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"arrow4-100x53.png\";s:5:\"width\";i:100;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"arrow4-100x53.png\";s:5:\"width\";i:100;s:6:\"height\";i:53;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:{}}}'),
(871, 425, '_wp_attached_file', 'revslider/alias/whitehorse_logo.png'),
(872, 425, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:184;s:6:\"height\";i:68;s:4:\"file\";s:35:\"revslider/alias/whitehorse_logo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"whitehorse_logo-150x68.png\";s:5:\"width\";i:150;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:25:\"whitehorse_logo-80x68.png\";s:5:\"width\";i:80;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"whitehorse_logo-100x68.png\";s:5:\"width\";i:100;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"whitehorse_logo-100x68.png\";s:5:\"width\";i:100;s:6:\"height\";i:68;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:{}}}'),
(873, 426, '_wp_attached_file', 'revslider/alias/arrow1.png'),
(874, 426, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:100;s:6:\"height\";i:29;s:4:\"file\";s:26:\"revslider/alias/arrow1.png\";s:5:\"sizes\";a:1:{s:10:\"maple_mini\";a:4:{s:4:\"file\";s:16:\"arrow1-80x29.png\";s:5:\"width\";i:80;s:6:\"height\";i:29;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:{}}}'),
(875, 427, '_wp_attached_file', 'revslider/alias/arrow2.png'),
(876, 427, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:79;s:6:\"height\";i:74;s:4:\"file\";s:26:\"revslider/alias/arrow2.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:{}}}'),
(877, 428, '_wp_attached_file', 'revslider/alias/arrow3.png'),
(878, 428, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:149;s:6:\"height\";i:49;s:4:\"file\";s:26:\"revslider/alias/arrow3.png\";s:5:\"sizes\";a:3:{s:10:\"maple_mini\";a:4:{s:4:\"file\";s:16:\"arrow3-80x49.png\";s:5:\"width\";i:80;s:6:\"height\";i:49;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"arrow3-100x49.png\";s:5:\"width\";i:100;s:6:\"height\";i:49;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"arrow3-100x49.png\";s:5:\"width\";i:100;s:6:\"height\";i:49;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:{}}}'),
(879, 429, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(880, 430, '_form', '<label> My name is\n    [text* your-name] </label>\n\n<label> I\'m from (optional organisation name)\n    [text* your-organisation] </label>\n\n<label> You can reach me at (email address)\n    [email* your-email] </label>\n\n<label> I need your help with (this topic)\n    [text* your-subject] </label>\n\n<label> Let me tell you a little about it (optional)\n    [textarea your-message] </label>\n\n<FONT COLOR=\"1D8DB0\">[submit \"Submit\"]'),
(881, 430, '_mail', 'a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:46:\"[_site_title] <colinrusso@engagingfutures.com>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(882, 430, '_mail_2', 'a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:38:\"[_site_title] <drcolinrusso@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(883, 430, '_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:37:\"The email 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.\";}'),
(884, 430, '_additional_settings', ''),
(885, 430, '_locale', 'en_US'),
(886, 431, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(887, 432, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605325707134{background-color: #2c5885 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(889, 434, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(890, 435, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(891, 436, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(892, 438, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(893, 439, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(894, 440, '_wp_trash_meta_status', 'publish'),
(895, 440, '_wp_trash_meta_time', '1605334002'),
(897, 442, '_wp_attached_file', '2020/11/logo.jpg'),
(898, 442, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:975;s:6:\"height\";i:889;s:4:\"file\";s:16:\"2020/11/logo.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"logo-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"logo-768x700.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:16:\"logo-975x563.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:14:\"logo-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:16:\"logo-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:16:\"logo-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:16:\"logo-975x500.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:16:\"logo-500x889.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:889;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-300x300.jpg\";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:\"logo-600x547.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-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:\"logo-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:\"logo-600x547.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-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:{}}}'),
(899, 443, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(900, 444, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(901, 445, '_wp_attached_file', 'revslider/art3.jpg'),
(902, 445, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:18:\"revslider/art3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"art3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(903, 446, '_wp_attached_file', 'revslider/art4.jpg'),
(904, 446, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1158;s:4:\"file\";s:18:\"revslider/art4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"art4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(905, 447, '_wp_attached_file', 'revslider/art5.jpg'),
(906, 447, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:18:\"revslider/art5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"art5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(907, 448, '_wp_attached_file', 'revslider/art8.jpg'),
(908, 448, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"revslider/art8.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"art8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(909, 449, '_wp_attached_file', 'revslider/sunshinecover.jpg'),
(910, 449, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"revslider/sunshinecover.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"sunshinecover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(911, 450, '_wp_attached_file', 'revslider/sunrise.mp4'),
(912, 451, '_wp_attached_file', 'revslider/art7.jpg'),
(913, 451, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1285;s:4:\"file\";s:18:\"revslider/art7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"art7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(914, 452, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(915, 454, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(916, 455, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(917, 456, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(918, 457, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(919, 461, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-14-at-22.35.05.png'),
(920, 461, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2702;s:6:\"height\";i:346;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-14-at-22.35.05.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-14-at-22.35.05-300x38.png\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.35.05-1024x131.png\";s:5:\"width\";i:1024;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.35.05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-14-at-22.35.05-768x98.png\";s:5:\"width\";i:768;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.35.05-1536x197.png\";s:5:\"width\";i:1536;s:6:\"height\";i:197;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.35.05-2048x262.png\";s:5:\"width\";i:2048;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.35.05-1000x346.png\";s:5:\"width\";i:1000;s:6:\"height\";i:346;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-14-at-22.35.05-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.35.05-600x346.png\";s:5:\"width\";i:600;s:6:\"height\";i:346;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.35.05-500x346.png\";s:5:\"width\";i:500;s:6:\"height\";i:346;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.35.05-1000x346.png\";s:5:\"width\";i:1000;s:6:\"height\";i:346;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.35.05-500x346.png\";s:5:\"width\";i:500;s:6:\"height\";i:346;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.35.05-1000x346.png\";s:5:\"width\";i:1000;s:6:\"height\";i:346;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.35.05-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-14-at-22.35.05-600x77.png\";s:5:\"width\";i:600;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.35.05-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:46:\"Screen-Shot-2020-11-14-at-22.35.05-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-14-at-22.35.05-600x77.png\";s:5:\"width\";i:600;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.35.05-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:{}}}'),
(921, 462, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-14-at-22.47.29.png'),
(922, 462, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2360;s:6:\"height\";i:234;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-14-at-22.47.29.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-14-at-22.47.29-300x30.png\";s:5:\"width\";i:300;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.47.29-1024x102.png\";s:5:\"width\";i:1024;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.47.29-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-14-at-22.47.29-768x76.png\";s:5:\"width\";i:768;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.47.29-1536x152.png\";s:5:\"width\";i:1536;s:6:\"height\";i:152;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.47.29-2048x203.png\";s:5:\"width\";i:2048;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.47.29-1000x234.png\";s:5:\"width\";i:1000;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-14-at-22.47.29-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.47.29-600x234.png\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.47.29-500x234.png\";s:5:\"width\";i:500;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.47.29-1000x234.png\";s:5:\"width\";i:1000;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.47.29-500x234.png\";s:5:\"width\";i:500;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-14-at-22.47.29-1000x234.png\";s:5:\"width\";i:1000;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.47.29-300x234.png\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-14-at-22.47.29-600x59.png\";s:5:\"width\";i:600;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.47.29-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:46:\"Screen-Shot-2020-11-14-at-22.47.29-300x234.png\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-14-at-22.47.29-600x59.png\";s:5:\"width\";i:600;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-14-at-22.47.29-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:{}}}'),
(923, 463, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1483477610246{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(924, 464, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1483477610246{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(925, 466, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(926, 468, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(927, 471, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(928, 472, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(929, 474, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(930, 476, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(931, 477, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}.vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}.vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}'),
(932, 479, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}'),
(933, 480, '_wp_attached_file', '2020/11/Canberra-Presentation.jpg'),
(934, 480, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1277;s:6:\"height\";i:712;s:4:\"file\";s:33:\"2020/11/Canberra-Presentation.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Canberra-Presentation-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Canberra-Presentation-1024x571.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Canberra-Presentation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Canberra-Presentation-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:34:\"Canberra-Presentation-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:31:\"Canberra-Presentation-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:33:\"Canberra-Presentation-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:33:\"Canberra-Presentation-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:34:\"Canberra-Presentation-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:33:\"Canberra-Presentation-500x712.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:34:\"Canberra-Presentation-1000x712.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Canberra-Presentation-300x300.jpg\";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:33:\"Canberra-Presentation-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Canberra-Presentation-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:33:\"Canberra-Presentation-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:33:\"Canberra-Presentation-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Canberra-Presentation-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:{}}}'),
(935, 18, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:2:{s:48:\"1606028001586-e6d60e1ef32bb6940d8e3093b364144c-2\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:2:{s:7:\"grid_id\";s:55:\"vc_gid:1606028001586-e6d60e1ef32bb6940d8e3093b364144c-2\";s:7:\"include\";s:11:\"480,208,216\";}s:7:\"content\";s:0:\"\";}s:49:\"1606028002481-bbdd083633335a90475e6d8ce3df5e82-10\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:2:{s:7:\"grid_id\";s:56:\"vc_gid:1606028002481-bbdd083633335a90475e6d8ce3df5e82-10\";s:7:\"include\";s:11:\"210,207,206\";}s:7:\"content\";s:0:\"\";}}}}'),
(936, 482, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}'),
(937, 484, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}'),
(938, 485, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}'),
(939, 486, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}'),
(940, 488, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(941, 489, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(942, 490, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(943, 101, '_wp_page_template', 'page.php'),
(944, 101, 'slide_template', 'default'),
(945, 101, 'rs_page_bg_color', '#ffffff'),
(946, 101, '_wpb_vc_js_status', 'true'),
(947, 101, '_vc_post_settings', 'a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:49:\"1606025202200-405296225210e8f9fc9879d7f9b53102-10\";a:3:{s:3:\"tag\";s:15:\"vc_masonry_grid\";s:4:\"atts\";a:6:{s:9:\"post_type\";s:4:\"post\";s:9:\"max_items\";s:2:\"10\";s:5:\"style\";s:9:\"load-more\";s:14:\"items_per_page\";s:1:\"7\";s:13:\"element_width\";s:1:\"6\";s:7:\"grid_id\";s:56:\"vc_gid:1606025202200-405296225210e8f9fc9879d7f9b53102-10\";}s:7:\"content\";s:0:\"\";}}}}'),
(948, 101, 'posts_add_category_filter_value', 'no'),
(949, 101, 'posts_add_category_filter_counter_value', 'yes'),
(950, 101, 'posts_filter_orderby_value', 'date'),
(951, 101, 'posts_filter_order_value', 'desc'),
(952, 101, 'maple_enable_custom_header_options_value', 'no'),
(953, 101, 'maple_enable_website_loading_value', 'off'),
(954, 101, 'maple_content_to_the_top_value', 'on'),
(955, 101, 'maple_custom_header_pre_value', 'light');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(956, 101, 'maple_custom_header_after_value', 'light'),
(957, 101, 'maple_enable_custom_pagetitle_options_value', 'no'),
(958, 101, 'maple_header_type_value', 'image'),
(959, 101, 'maple_pagetitle_image_parallax_value', 'off'),
(960, 101, 'maple_pagetitle_image_overlay_value', 'off'),
(961, 101, 'maple_pagetitle_overlay_type_value', 'color'),
(962, 101, 'maple_pagetitle_overlay_color_value', '212121'),
(963, 101, 'maple_pagetitle_overlay_pattern_value', 'none'),
(964, 101, 'maple_pagetitle_overlay_opacity_value', '100%'),
(965, 101, 'maple_header_color_opacity_value', '100'),
(966, 101, 'maple_header_pattern_value', 'none'),
(967, 101, 'maple_banner_slider_value', '-1'),
(968, 101, 'maple_page_title_padding_value', '140px'),
(969, 101, 'maple_header_text_alignment_value', 'center'),
(970, 101, 'maple_hide_pagetitle_value', 'yes'),
(971, 101, 'maple_header_text_font_value', 'Helvetica Neue'),
(972, 101, 'maple_header_text_color_value', 'f2f2f2'),
(973, 101, 'maple_header_text_size_value', '42px'),
(974, 101, 'maple_header_text_margin_top_value', '40px'),
(975, 101, 'maple_hide_sec_pagetitle_value', 'yes'),
(976, 101, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(977, 101, 'maple_secondary_title_text_color_value', '949494'),
(978, 101, 'maple_secondary_title_text_size_value', '19px'),
(979, 101, 'maple_header_secondary_text_margin_top_value', '15px'),
(980, 101, 'maple_enable_breadcrumbs_value', 'yes'),
(981, 101, 'maple_breadcrumbs_margin_top_value', '30px'),
(982, 101, 'sidebar_for_default_value', 'none'),
(983, 101, 'sidebars_available_value', 'defaultblogsidebar'),
(984, 495, '_menu_item_type', 'post_type'),
(985, 495, '_menu_item_menu_item_parent', '0'),
(986, 495, '_menu_item_object_id', '18'),
(987, 495, '_menu_item_object', 'page'),
(988, 495, '_menu_item_target', ''),
(989, 495, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(990, 495, '_menu_item_xfn', ''),
(991, 495, '_menu_item_url', ''),
(993, 496, '_menu_item_type', 'post_type'),
(994, 496, '_menu_item_menu_item_parent', '0'),
(995, 496, '_menu_item_object_id', '24'),
(996, 496, '_menu_item_object', 'page'),
(997, 496, '_menu_item_target', ''),
(998, 496, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(999, 496, '_menu_item_xfn', ''),
(1000, 496, '_menu_item_url', ''),
(1002, 497, '_menu_item_type', 'post_type'),
(1003, 497, '_menu_item_menu_item_parent', '0'),
(1004, 497, '_menu_item_object_id', '101'),
(1005, 497, '_menu_item_object', 'page'),
(1006, 497, '_menu_item_target', ''),
(1007, 497, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(1008, 497, '_menu_item_xfn', ''),
(1009, 497, '_menu_item_url', ''),
(1011, 498, '_menu_item_type', 'post_type'),
(1012, 498, '_menu_item_menu_item_parent', '0'),
(1013, 498, '_menu_item_object_id', '29'),
(1014, 498, '_menu_item_object', 'page'),
(1015, 498, '_menu_item_target', ''),
(1016, 498, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(1017, 498, '_menu_item_xfn', ''),
(1018, 498, '_menu_item_url', ''),
(1020, 499, '_wp_attached_file', '2020/11/dan-gold-4_jhDO54BYg-unsplash-scaled.jpg'),
(1021, 499, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:48:\"2020/11/dan-gold-4_jhDO54BYg-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"dan-gold-4_jhDO54BYg-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"dan-gold-4_jhDO54BYg-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"dan-gold-4_jhDO54BYg-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"dan-gold-4_jhDO54BYg-unsplash-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:43:\"dan-gold-4_jhDO54BYg-unsplash-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:43:\"dan-gold-4_jhDO54BYg-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:42:\"dan-gold-4_jhDO54BYg-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:39:\"dan-gold-4_jhDO54BYg-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:41:\"dan-gold-4_jhDO54BYg-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:41:\"dan-gold-4_jhDO54BYg-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:42:\"dan-gold-4_jhDO54BYg-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:42:\"dan-gold-4_jhDO54BYg-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:43:\"dan-gold-4_jhDO54BYg-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"dan-gold-4_jhDO54BYg-unsplash-300x300.jpg\";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:41:\"dan-gold-4_jhDO54BYg-unsplash-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:41:\"dan-gold-4_jhDO54BYg-unsplash-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:41:\"dan-gold-4_jhDO54BYg-unsplash-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:41:\"dan-gold-4_jhDO54BYg-unsplash-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:41:\"dan-gold-4_jhDO54BYg-unsplash-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:{}}s:14:\"original_image\";s:33:\"dan-gold-4_jhDO54BYg-unsplash.jpg\";}'),
(1022, 500, '_wp_attached_file', '2020/11/alexander-redl-d3bYmnZ0ank-unsplash-scaled.jpg'),
(1023, 500, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1600;s:4:\"file\";s:54:\"2020/11/alexander-redl-d3bYmnZ0ank-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"alexander-redl-d3bYmnZ0ank-unsplash-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"alexander-redl-d3bYmnZ0ank-unsplash-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"alexander-redl-d3bYmnZ0ank-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"alexander-redl-d3bYmnZ0ank-unsplash-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"alexander-redl-d3bYmnZ0ank-unsplash-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"alexander-redl-d3bYmnZ0ank-unsplash-2048x1280.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:48:\"alexander-redl-d3bYmnZ0ank-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:45:\"alexander-redl-d3bYmnZ0ank-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:47:\"alexander-redl-d3bYmnZ0ank-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:47:\"alexander-redl-d3bYmnZ0ank-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:48:\"alexander-redl-d3bYmnZ0ank-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:48:\"alexander-redl-d3bYmnZ0ank-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:49:\"alexander-redl-d3bYmnZ0ank-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"alexander-redl-d3bYmnZ0ank-unsplash-300x300.jpg\";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:47:\"alexander-redl-d3bYmnZ0ank-unsplash-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:47:\"alexander-redl-d3bYmnZ0ank-unsplash-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:47:\"alexander-redl-d3bYmnZ0ank-unsplash-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:47:\"alexander-redl-d3bYmnZ0ank-unsplash-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:47:\"alexander-redl-d3bYmnZ0ank-unsplash-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:{}}s:14:\"original_image\";s:39:\"alexander-redl-d3bYmnZ0ank-unsplash.jpg\";}'),
(1024, 501, '_wp_attached_file', '2020/11/alexander-mils-nG4ZimMIO_k-unsplash-scaled.jpg'),
(1025, 501, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1696;s:6:\"height\";i:2560;s:4:\"file\";s:54:\"2020/11/alexander-mils-nG4ZimMIO_k-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"alexander-mils-nG4ZimMIO_k-unsplash-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"alexander-mils-nG4ZimMIO_k-unsplash-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"alexander-mils-nG4ZimMIO_k-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"alexander-mils-nG4ZimMIO_k-unsplash-768x1160.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"alexander-mils-nG4ZimMIO_k-unsplash-1017x1536.jpg\";s:5:\"width\";i:1017;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"alexander-mils-nG4ZimMIO_k-unsplash-1356x2048.jpg\";s:5:\"width\";i:1356;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:48:\"alexander-mils-nG4ZimMIO_k-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:45:\"alexander-mils-nG4ZimMIO_k-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:47:\"alexander-mils-nG4ZimMIO_k-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:47:\"alexander-mils-nG4ZimMIO_k-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:48:\"alexander-mils-nG4ZimMIO_k-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:48:\"alexander-mils-nG4ZimMIO_k-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:49:\"alexander-mils-nG4ZimMIO_k-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"alexander-mils-nG4ZimMIO_k-unsplash-300x300.jpg\";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:47:\"alexander-mils-nG4ZimMIO_k-unsplash-600x906.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:906;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:47:\"alexander-mils-nG4ZimMIO_k-unsplash-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:47:\"alexander-mils-nG4ZimMIO_k-unsplash-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:47:\"alexander-mils-nG4ZimMIO_k-unsplash-600x906.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:906;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:47:\"alexander-mils-nG4ZimMIO_k-unsplash-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:{}}s:14:\"original_image\";s:39:\"alexander-mils-nG4ZimMIO_k-unsplash.jpg\";}'),
(1026, 502, '_wp_attached_file', '2020/11/fezbot2000-78T99kbcp_4-unsplash-scaled.jpg'),
(1027, 502, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:50:\"2020/11/fezbot2000-78T99kbcp_4-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"fezbot2000-78T99kbcp_4-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"fezbot2000-78T99kbcp_4-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"fezbot2000-78T99kbcp_4-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"fezbot2000-78T99kbcp_4-unsplash-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:45:\"fezbot2000-78T99kbcp_4-unsplash-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:45:\"fezbot2000-78T99kbcp_4-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:44:\"fezbot2000-78T99kbcp_4-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:41:\"fezbot2000-78T99kbcp_4-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:43:\"fezbot2000-78T99kbcp_4-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:43:\"fezbot2000-78T99kbcp_4-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:44:\"fezbot2000-78T99kbcp_4-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:44:\"fezbot2000-78T99kbcp_4-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:45:\"fezbot2000-78T99kbcp_4-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"fezbot2000-78T99kbcp_4-unsplash-300x300.jpg\";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:43:\"fezbot2000-78T99kbcp_4-unsplash-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:43:\"fezbot2000-78T99kbcp_4-unsplash-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:43:\"fezbot2000-78T99kbcp_4-unsplash-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:43:\"fezbot2000-78T99kbcp_4-unsplash-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:43:\"fezbot2000-78T99kbcp_4-unsplash-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:{}}s:14:\"original_image\";s:35:\"fezbot2000-78T99kbcp_4-unsplash.jpg\";}'),
(1028, 503, '_wp_attached_file', '2020/11/heather-ford-Ug7kk0kThLk-unsplash-scaled.jpg'),
(1029, 503, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2020/11/heather-ford-Ug7kk0kThLk-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"heather-ford-Ug7kk0kThLk-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"heather-ford-Ug7kk0kThLk-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"heather-ford-Ug7kk0kThLk-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"heather-ford-Ug7kk0kThLk-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"heather-ford-Ug7kk0kThLk-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"heather-ford-Ug7kk0kThLk-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"heather-ford-Ug7kk0kThLk-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"heather-ford-Ug7kk0kThLk-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"heather-ford-Ug7kk0kThLk-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"heather-ford-Ug7kk0kThLk-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"heather-ford-Ug7kk0kThLk-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"heather-ford-Ug7kk0kThLk-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"heather-ford-Ug7kk0kThLk-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"heather-ford-Ug7kk0kThLk-unsplash-300x300.jpg\";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:45:\"heather-ford-Ug7kk0kThLk-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"heather-ford-Ug7kk0kThLk-unsplash-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:45:\"heather-ford-Ug7kk0kThLk-unsplash-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:45:\"heather-ford-Ug7kk0kThLk-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"heather-ford-Ug7kk0kThLk-unsplash-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:{}}s:14:\"original_image\";s:37:\"heather-ford-Ug7kk0kThLk-unsplash.jpg\";}'),
(1030, 504, '_wp_attached_file', '2020/11/jesper-aggergaard-CEM52sAHR80-unsplash-scaled.jpg'),
(1031, 504, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:57:\"2020/11/jesper-aggergaard-CEM52sAHR80-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"jesper-aggergaard-CEM52sAHR80-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-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:52:\"jesper-aggergaard-CEM52sAHR80-unsplash-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:52:\"jesper-aggergaard-CEM52sAHR80-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:51:\"jesper-aggergaard-CEM52sAHR80-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:48:\"jesper-aggergaard-CEM52sAHR80-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:51:\"jesper-aggergaard-CEM52sAHR80-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:51:\"jesper-aggergaard-CEM52sAHR80-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:52:\"jesper-aggergaard-CEM52sAHR80-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-300x300.jpg\";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:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-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:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-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:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-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:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-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:50:\"jesper-aggergaard-CEM52sAHR80-unsplash-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:{}}s:14:\"original_image\";s:42:\"jesper-aggergaard-CEM52sAHR80-unsplash.jpg\";}'),
(1032, 505, '_wp_attached_file', '2020/11/luke-chesser-rCOWMC8qf8A-unsplash-scaled.jpg'),
(1033, 505, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2020/11/luke-chesser-rCOWMC8qf8A-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"luke-chesser-rCOWMC8qf8A-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"luke-chesser-rCOWMC8qf8A-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"luke-chesser-rCOWMC8qf8A-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"luke-chesser-rCOWMC8qf8A-unsplash-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:47:\"luke-chesser-rCOWMC8qf8A-unsplash-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:47:\"luke-chesser-rCOWMC8qf8A-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"luke-chesser-rCOWMC8qf8A-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"luke-chesser-rCOWMC8qf8A-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"luke-chesser-rCOWMC8qf8A-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"luke-chesser-rCOWMC8qf8A-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"luke-chesser-rCOWMC8qf8A-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"luke-chesser-rCOWMC8qf8A-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"luke-chesser-rCOWMC8qf8A-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"luke-chesser-rCOWMC8qf8A-unsplash-300x300.jpg\";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:45:\"luke-chesser-rCOWMC8qf8A-unsplash-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:45:\"luke-chesser-rCOWMC8qf8A-unsplash-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:45:\"luke-chesser-rCOWMC8qf8A-unsplash-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:45:\"luke-chesser-rCOWMC8qf8A-unsplash-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:45:\"luke-chesser-rCOWMC8qf8A-unsplash-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:{}}s:14:\"original_image\";s:37:\"luke-chesser-rCOWMC8qf8A-unsplash.jpg\";}'),
(1034, 506, '_wp_attached_file', '2020/11/maid-milinkic-yoLmC2t6y3s-unsplash-scaled.jpg'),
(1035, 506, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1686;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2020/11/maid-milinkic-yoLmC2t6y3s-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"maid-milinkic-yoLmC2t6y3s-unsplash-198x300.jpg\";s:5:\"width\";i:198;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"maid-milinkic-yoLmC2t6y3s-unsplash-674x1024.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"maid-milinkic-yoLmC2t6y3s-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"maid-milinkic-yoLmC2t6y3s-unsplash-768x1166.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"maid-milinkic-yoLmC2t6y3s-unsplash-1011x1536.jpg\";s:5:\"width\";i:1011;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"maid-milinkic-yoLmC2t6y3s-unsplash-1349x2048.jpg\";s:5:\"width\";i:1349;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"maid-milinkic-yoLmC2t6y3s-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"maid-milinkic-yoLmC2t6y3s-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"maid-milinkic-yoLmC2t6y3s-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"maid-milinkic-yoLmC2t6y3s-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"maid-milinkic-yoLmC2t6y3s-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"maid-milinkic-yoLmC2t6y3s-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"maid-milinkic-yoLmC2t6y3s-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"maid-milinkic-yoLmC2t6y3s-unsplash-300x300.jpg\";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:46:\"maid-milinkic-yoLmC2t6y3s-unsplash-600x911.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:911;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"maid-milinkic-yoLmC2t6y3s-unsplash-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:46:\"maid-milinkic-yoLmC2t6y3s-unsplash-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:46:\"maid-milinkic-yoLmC2t6y3s-unsplash-600x911.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:911;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"maid-milinkic-yoLmC2t6y3s-unsplash-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:{}}s:14:\"original_image\";s:38:\"maid-milinkic-yoLmC2t6y3s-unsplash.jpg\";}'),
(1036, 507, '_wp_attached_file', '2020/11/national-cancer-institute-701-FJcjLAQ-unsplash-scaled.jpg'),
(1037, 507, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:65:\"2020/11/national-cancer-institute-701-FJcjLAQ-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"national-cancer-institute-701-FJcjLAQ-unsplash-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"national-cancer-institute-701-FJcjLAQ-unsplash-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:60:\"national-cancer-institute-701-FJcjLAQ-unsplash-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:59:\"national-cancer-institute-701-FJcjLAQ-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:56:\"national-cancer-institute-701-FJcjLAQ-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:59:\"national-cancer-institute-701-FJcjLAQ-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:59:\"national-cancer-institute-701-FJcjLAQ-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:60:\"national-cancer-institute-701-FJcjLAQ-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-300x300.jpg\";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:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-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:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-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:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-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:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-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:58:\"national-cancer-institute-701-FJcjLAQ-unsplash-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:{}}s:14:\"original_image\";s:50:\"national-cancer-institute-701-FJcjLAQ-unsplash.jpg\";}'),
(1038, 508, '_edit_last', '1'),
(1039, 508, '_edit_lock', '1605524734:1'),
(1040, 508, 'slide_template', ''),
(1041, 508, 'rs_page_bg_color', ''),
(1042, 508, '_wpb_vc_js_status', 'true'),
(1043, 1, '_edit_lock', '1605525994:1'),
(1044, 1, '_edit_last', '1'),
(1047, 1, 'slide_template', 'default'),
(1048, 1, 'rs_page_bg_color', '#ffffff'),
(1049, 1, '_wpb_vc_js_status', 'false'),
(1050, 1, 'enable_post_custom_sidebar_layout_value', 'false'),
(1051, 1, 'sidebar_for_default_value', 'none'),
(1052, 1, 'sidebars_available_value', 'defaultblogsidebar'),
(1053, 1, 'posttype_value', 'image'),
(1054, 1, 'videoSource_value', 'youtube'),
(1055, 1, 'gallery_slider_value', '-1'),
(1056, 1, 'audioSource_value', 'embed'),
(1057, 1, 'maple_enable_custom_header_options_value', 'no'),
(1058, 1, 'maple_enable_website_loading_value', 'off'),
(1059, 1, 'maple_content_to_the_top_value', 'on'),
(1060, 1, 'maple_custom_header_pre_value', 'light'),
(1061, 1, 'maple_custom_header_after_value', 'light'),
(1062, 1, 'maple_enable_custom_pagetitle_options_value', 'no'),
(1063, 1, 'maple_header_type_value', 'image'),
(1064, 1, 'maple_pagetitle_image_parallax_value', 'off'),
(1065, 1, 'maple_pagetitle_image_overlay_value', 'off'),
(1066, 1, 'maple_pagetitle_overlay_type_value', 'color'),
(1067, 1, 'maple_pagetitle_overlay_color_value', '333333'),
(1068, 1, 'maple_pagetitle_overlay_pattern_value', 'none'),
(1069, 1, 'maple_pagetitle_overlay_opacity_value', '100%'),
(1070, 1, 'maple_header_color_opacity_value', '100'),
(1071, 1, 'maple_header_pattern_value', 'none'),
(1072, 1, 'maple_banner_slider_value', '-1'),
(1073, 1, 'maple_page_title_padding_value', '50px'),
(1074, 1, 'maple_header_text_alignment_value', 'left'),
(1075, 1, 'maple_hide_pagetitle_value', 'yes'),
(1076, 1, 'maple_header_text_font_value', 'Helvetica Neue'),
(1077, 1, 'maple_header_text_color_value', 'f2f2f2'),
(1078, 1, 'maple_header_text_size_value', '16px'),
(1079, 1, 'maple_header_text_margin_top_value', '20px'),
(1080, 1, 'maple_hide_sec_pagetitle_value', 'yes'),
(1081, 1, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(1082, 1, 'maple_secondary_title_text_color_value', '828282'),
(1083, 1, 'maple_secondary_title_text_size_value', '12px'),
(1084, 1, 'maple_header_secondary_text_margin_top_value', '10px'),
(1085, 1, 'maple_enable_breadcrumbs_value', 'yes'),
(1086, 1, 'maple_breadcrumbs_margin_top_value', '10px'),
(1091, 1, '_thumbnail_id', '503'),
(1098, 520, '_edit_last', '1'),
(1099, 520, '_edit_lock', '1605526296:1'),
(1100, 521, '_wp_attached_file', '2020/11/image-20141125-2362-1h3qjuh.jpg'),
(1101, 521, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:324;s:6:\"height\";i:214;s:4:\"file\";s:39:\"2020/11/image-20141125-2362-1h3qjuh.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"image-20141125-2362-1h3qjuh-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"image-20141125-2362-1h3qjuh-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:37:\"image-20141125-2362-1h3qjuh-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"image-20141125-2362-1h3qjuh-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"image-20141125-2362-1h3qjuh-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:39:\"image-20141125-2362-1h3qjuh-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"image-20141125-2362-1h3qjuh-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:{}}}'),
(1102, 522, '_wp_attached_file', '2020/11/image-20160531-13769-1rzbj5e.png'),
(1103, 522, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:324;s:6:\"height\";i:214;s:4:\"file\";s:40:\"2020/11/image-20160531-13769-1rzbj5e.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"image-20160531-13769-1rzbj5e-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"image-20160531-13769-1rzbj5e-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:38:\"image-20160531-13769-1rzbj5e-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"image-20160531-13769-1rzbj5e-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"image-20160531-13769-1rzbj5e-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:40:\"image-20160531-13769-1rzbj5e-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"image-20160531-13769-1rzbj5e-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:{}}}'),
(1104, 523, '_wp_attached_file', '2020/11/62d2jpxb-1354145672.jpg'),
(1105, 523, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:324;s:6:\"height\";i:214;s:4:\"file\";s:31:\"2020/11/62d2jpxb-1354145672.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"62d2jpxb-1354145672-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"62d2jpxb-1354145672-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:29:\"62d2jpxb-1354145672-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"62d2jpxb-1354145672-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"62d2jpxb-1354145672-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:31:\"62d2jpxb-1354145672-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"62d2jpxb-1354145672-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:{}}}'),
(1106, 524, '_wp_attached_file', '2020/11/image-20160708-30670-dttsg6.jpg'),
(1107, 524, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:170;s:6:\"height\";i:170;s:4:\"file\";s:39:\"2020/11/image-20160708-30670-dttsg6.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"image-20160708-30670-dttsg6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:37:\"image-20160708-30670-dttsg6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"image-20160708-30670-dttsg6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"image-20160708-30670-dttsg6-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:{}}}'),
(1108, 525, '_wp_attached_file', '2020/11/image-20160718-2147-nb3akg.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1109, 525, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:324;s:6:\"height\";i:214;s:4:\"file\";s:38:\"2020/11/image-20160718-2147-nb3akg.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"image-20160718-2147-nb3akg-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"image-20160718-2147-nb3akg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:36:\"image-20160718-2147-nb3akg-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"image-20160718-2147-nb3akg-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"image-20160718-2147-nb3akg-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:38:\"image-20160718-2147-nb3akg-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"image-20160718-2147-nb3akg-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:{}}}'),
(1110, 526, '_wp_attached_file', '2020/11/image-20161119-19345-9c77q1.jpg'),
(1111, 526, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:496;s:6:\"height\";i:372;s:4:\"file\";s:39:\"2020/11/image-20161119-19345-9c77q1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"image-20161119-19345-9c77q1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"image-20161119-19345-9c77q1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:37:\"image-20161119-19345-9c77q1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"image-20161119-19345-9c77q1-300x300.jpg\";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:39:\"image-20161119-19345-9c77q1-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:39:\"image-20161119-19345-9c77q1-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:39:\"image-20161119-19345-9c77q1-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:{}}}'),
(1112, 527, '_wp_attached_file', '2020/11/image-20181205-186070-f58pk2.jpg'),
(1113, 527, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:238;s:6:\"height\";i:238;s:4:\"file\";s:40:\"2020/11/image-20181205-186070-f58pk2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"image-20181205-186070-f58pk2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:38:\"image-20181205-186070-f58pk2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"image-20181205-186070-f58pk2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"image-20181205-186070-f58pk2-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:3:\"5.6\";s:6:\"credit\";s:5:\"Suraj\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1544012945\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"53\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(1114, 520, '_thumbnail_id', '526'),
(1117, 520, 'slide_template', 'default'),
(1118, 520, 'rs_page_bg_color', '#ffffff'),
(1119, 520, '_wpb_vc_js_status', 'false'),
(1120, 520, 'enable_post_custom_sidebar_layout_value', 'false'),
(1121, 520, 'sidebar_for_default_value', 'none'),
(1122, 520, 'sidebars_available_value', 'defaultblogsidebar'),
(1123, 520, 'posttype_value', 'image'),
(1124, 520, 'videoSource_value', 'youtube'),
(1125, 520, 'gallery_slider_value', '-1'),
(1126, 520, 'audioSource_value', 'embed'),
(1127, 520, 'maple_enable_custom_header_options_value', 'no'),
(1128, 520, 'maple_enable_website_loading_value', 'off'),
(1129, 520, 'maple_content_to_the_top_value', 'on'),
(1130, 520, 'maple_custom_header_pre_value', 'light'),
(1131, 520, 'maple_custom_header_after_value', 'light'),
(1132, 520, 'maple_enable_custom_pagetitle_options_value', 'no'),
(1133, 520, 'maple_header_type_value', 'image'),
(1134, 520, 'maple_pagetitle_image_parallax_value', 'off'),
(1135, 520, 'maple_pagetitle_image_overlay_value', 'off'),
(1136, 520, 'maple_pagetitle_overlay_type_value', 'color'),
(1137, 520, 'maple_pagetitle_overlay_color_value', '333333'),
(1138, 520, 'maple_pagetitle_overlay_pattern_value', 'none'),
(1139, 520, 'maple_pagetitle_overlay_opacity_value', '100%'),
(1140, 520, 'maple_header_color_opacity_value', '100'),
(1141, 520, 'maple_header_pattern_value', 'none'),
(1142, 520, 'maple_banner_slider_value', '-1'),
(1143, 520, 'maple_page_title_padding_value', '50px'),
(1144, 520, 'maple_header_text_alignment_value', 'left'),
(1145, 520, 'maple_hide_pagetitle_value', 'yes'),
(1146, 520, 'maple_header_text_font_value', 'Helvetica Neue'),
(1147, 520, 'maple_header_text_color_value', 'f2f2f2'),
(1148, 520, 'maple_header_text_size_value', '16px'),
(1149, 520, 'maple_header_text_margin_top_value', '20px'),
(1150, 520, 'maple_hide_sec_pagetitle_value', 'yes'),
(1151, 520, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(1152, 520, 'maple_secondary_title_text_color_value', '828282'),
(1153, 520, 'maple_secondary_title_text_size_value', '12px'),
(1154, 520, 'maple_header_secondary_text_margin_top_value', '10px'),
(1155, 520, 'maple_enable_breadcrumbs_value', 'yes'),
(1156, 520, 'maple_breadcrumbs_margin_top_value', '10px'),
(1157, 529, '_edit_last', '1'),
(1158, 529, '_edit_lock', '1605526598:1'),
(1159, 529, '_thumbnail_id', '387'),
(1162, 529, 'slide_template', 'default'),
(1163, 529, 'rs_page_bg_color', '#ffffff'),
(1164, 529, '_wpb_vc_js_status', 'false'),
(1165, 529, 'enable_post_custom_sidebar_layout_value', 'false'),
(1166, 529, 'sidebar_for_default_value', 'none'),
(1167, 529, 'sidebars_available_value', 'defaultblogsidebar'),
(1168, 529, 'posttype_value', 'image'),
(1169, 529, 'videoSource_value', 'youtube'),
(1170, 529, 'gallery_slider_value', '-1'),
(1171, 529, 'audioSource_value', 'embed'),
(1172, 529, 'maple_enable_custom_header_options_value', 'no'),
(1173, 529, 'maple_enable_website_loading_value', 'off'),
(1174, 529, 'maple_content_to_the_top_value', 'on'),
(1175, 529, 'maple_custom_header_pre_value', 'light'),
(1176, 529, 'maple_custom_header_after_value', 'light'),
(1177, 529, 'maple_enable_custom_pagetitle_options_value', 'no'),
(1178, 529, 'maple_header_type_value', 'image'),
(1179, 529, 'maple_pagetitle_image_parallax_value', 'off'),
(1180, 529, 'maple_pagetitle_image_overlay_value', 'off'),
(1181, 529, 'maple_pagetitle_overlay_type_value', 'color'),
(1182, 529, 'maple_pagetitle_overlay_color_value', '333333'),
(1183, 529, 'maple_pagetitle_overlay_pattern_value', 'none'),
(1184, 529, 'maple_pagetitle_overlay_opacity_value', '100%'),
(1185, 529, 'maple_header_color_opacity_value', '100'),
(1186, 529, 'maple_header_pattern_value', 'none'),
(1187, 529, 'maple_banner_slider_value', '-1'),
(1188, 529, 'maple_page_title_padding_value', '50px'),
(1189, 529, 'maple_header_text_alignment_value', 'left'),
(1190, 529, 'maple_hide_pagetitle_value', 'yes'),
(1191, 529, 'maple_header_text_font_value', 'Helvetica Neue'),
(1192, 529, 'maple_header_text_color_value', 'f2f2f2'),
(1193, 529, 'maple_header_text_size_value', '16px'),
(1194, 529, 'maple_header_text_margin_top_value', '20px'),
(1195, 529, 'maple_hide_sec_pagetitle_value', 'yes'),
(1196, 529, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(1197, 529, 'maple_secondary_title_text_color_value', '828282'),
(1198, 529, 'maple_secondary_title_text_size_value', '12px'),
(1199, 529, 'maple_header_secondary_text_margin_top_value', '10px'),
(1200, 529, 'maple_enable_breadcrumbs_value', 'yes'),
(1201, 529, 'maple_breadcrumbs_margin_top_value', '10px'),
(1202, 531, '_edit_last', '1'),
(1203, 531, '_edit_lock', '1605527231:1'),
(1204, 531, '_thumbnail_id', '522'),
(1207, 531, 'slide_template', 'default'),
(1208, 531, 'rs_page_bg_color', '#ffffff'),
(1209, 531, '_wpb_vc_js_status', 'false'),
(1210, 531, 'enable_post_custom_sidebar_layout_value', 'false'),
(1211, 531, 'sidebar_for_default_value', 'none'),
(1212, 531, 'sidebars_available_value', 'defaultblogsidebar'),
(1213, 531, 'posttype_value', 'image'),
(1214, 531, 'videoSource_value', 'youtube'),
(1215, 531, 'gallery_slider_value', '-1'),
(1216, 531, 'audioSource_value', 'embed'),
(1217, 531, 'maple_enable_custom_header_options_value', 'no'),
(1218, 531, 'maple_enable_website_loading_value', 'off'),
(1219, 531, 'maple_content_to_the_top_value', 'on'),
(1220, 531, 'maple_custom_header_pre_value', 'light'),
(1221, 531, 'maple_custom_header_after_value', 'light'),
(1222, 531, 'maple_enable_custom_pagetitle_options_value', 'no'),
(1223, 531, 'maple_header_type_value', 'image'),
(1224, 531, 'maple_pagetitle_image_parallax_value', 'off'),
(1225, 531, 'maple_pagetitle_image_overlay_value', 'off'),
(1226, 531, 'maple_pagetitle_overlay_type_value', 'color'),
(1227, 531, 'maple_pagetitle_overlay_color_value', '333333'),
(1228, 531, 'maple_pagetitle_overlay_pattern_value', 'none'),
(1229, 531, 'maple_pagetitle_overlay_opacity_value', '100%'),
(1230, 531, 'maple_header_color_opacity_value', '100'),
(1231, 531, 'maple_header_pattern_value', 'none'),
(1232, 531, 'maple_banner_slider_value', '-1'),
(1233, 531, 'maple_page_title_padding_value', '50px'),
(1234, 531, 'maple_header_text_alignment_value', 'left'),
(1235, 531, 'maple_hide_pagetitle_value', 'yes'),
(1236, 531, 'maple_header_text_font_value', 'Helvetica Neue'),
(1237, 531, 'maple_header_text_color_value', 'f2f2f2'),
(1238, 531, 'maple_header_text_size_value', '16px'),
(1239, 531, 'maple_header_text_margin_top_value', '20px'),
(1240, 531, 'maple_hide_sec_pagetitle_value', 'yes'),
(1241, 531, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(1242, 531, 'maple_secondary_title_text_color_value', '828282'),
(1243, 531, 'maple_secondary_title_text_size_value', '12px'),
(1244, 531, 'maple_header_secondary_text_margin_top_value', '10px'),
(1245, 531, 'maple_enable_breadcrumbs_value', 'yes'),
(1246, 531, 'maple_breadcrumbs_margin_top_value', '10px'),
(1248, 533, '_edit_last', '1'),
(1249, 533, '_edit_lock', '1605527838:1'),
(1252, 533, 'slide_template', 'default'),
(1253, 533, 'rs_page_bg_color', '#ffffff'),
(1254, 533, '_wpb_vc_js_status', 'false'),
(1255, 533, 'enable_post_custom_sidebar_layout_value', 'false'),
(1256, 533, 'sidebar_for_default_value', 'none'),
(1257, 533, 'sidebars_available_value', 'defaultblogsidebar'),
(1258, 533, 'posttype_value', 'image'),
(1259, 533, 'videoSource_value', 'youtube'),
(1260, 533, 'gallery_slider_value', '-1'),
(1261, 533, 'audioSource_value', 'embed'),
(1262, 533, 'maple_enable_custom_header_options_value', 'no'),
(1263, 533, 'maple_enable_website_loading_value', 'off'),
(1264, 533, 'maple_content_to_the_top_value', 'on'),
(1265, 533, 'maple_custom_header_pre_value', 'light'),
(1266, 533, 'maple_custom_header_after_value', 'light'),
(1267, 533, 'maple_enable_custom_pagetitle_options_value', 'no'),
(1268, 533, 'maple_header_type_value', 'image'),
(1269, 533, 'maple_pagetitle_image_parallax_value', 'off'),
(1270, 533, 'maple_pagetitle_image_overlay_value', 'off'),
(1271, 533, 'maple_pagetitle_overlay_type_value', 'color'),
(1272, 533, 'maple_pagetitle_overlay_color_value', '333333'),
(1273, 533, 'maple_pagetitle_overlay_pattern_value', 'none'),
(1274, 533, 'maple_pagetitle_overlay_opacity_value', '100%'),
(1275, 533, 'maple_header_color_opacity_value', '100'),
(1276, 533, 'maple_header_pattern_value', 'none'),
(1277, 533, 'maple_banner_slider_value', '-1'),
(1278, 533, 'maple_page_title_padding_value', '50px'),
(1279, 533, 'maple_header_text_alignment_value', 'left'),
(1280, 533, 'maple_hide_pagetitle_value', 'yes'),
(1281, 533, 'maple_header_text_font_value', 'Helvetica Neue'),
(1282, 533, 'maple_header_text_color_value', 'f2f2f2'),
(1283, 533, 'maple_header_text_size_value', '16px'),
(1284, 533, 'maple_header_text_margin_top_value', '20px'),
(1285, 533, 'maple_hide_sec_pagetitle_value', 'yes'),
(1286, 533, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(1287, 533, 'maple_secondary_title_text_color_value', '828282'),
(1288, 533, 'maple_secondary_title_text_size_value', '12px'),
(1289, 533, 'maple_header_secondary_text_margin_top_value', '10px'),
(1290, 533, 'maple_enable_breadcrumbs_value', 'yes'),
(1291, 533, 'maple_breadcrumbs_margin_top_value', '10px'),
(1292, 536, '_wp_attached_file', '2020/11/Stradbroke-Island-scaled.jpeg'),
(1293, 536, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:37:\"2020/11/Stradbroke-Island-scaled.jpeg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Stradbroke-Island-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Stradbroke-Island-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Stradbroke-Island-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Stradbroke-Island-768x512.jpeg\";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:32:\"Stradbroke-Island-1536x1024.jpeg\";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:32:\"Stradbroke-Island-2048x1365.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:31:\"Stradbroke-Island-1000x563.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:28:\"Stradbroke-Island-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:30:\"Stradbroke-Island-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:30:\"Stradbroke-Island-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:31:\"Stradbroke-Island-1000x500.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:31:\"Stradbroke-Island-500x1000.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:32:\"Stradbroke-Island-1000x1000.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"Stradbroke-Island-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"Stradbroke-Island-600x400.jpeg\";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:30:\"Stradbroke-Island-100x100.jpeg\";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:30:\"Stradbroke-Island-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"Stradbroke-Island-600x400.jpeg\";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:30:\"Stradbroke-Island-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"Stradbroke-Island.jpeg\";}'),
(1294, 533, '_thumbnail_id', '536'),
(1297, 542, '_edit_last', '1'),
(1298, 542, '_edit_lock', '1605532603:1'),
(1299, 543, '_wp_attached_file', '2020/11/lionesque-city_0.jpg'),
(1300, 543, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:480;s:6:\"height\";i:267;s:4:\"file\";s:28:\"2020/11/lionesque-city_0.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"lionesque-city_0-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"lionesque-city_0-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:26:\"lionesque-city_0-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"lionesque-city_0-300x267.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"lionesque-city_0-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:28:\"lionesque-city_0-300x267.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"lionesque-city_0-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:{}}}'),
(1303, 542, 'slide_template', 'default'),
(1304, 542, 'rs_page_bg_color', '#ffffff'),
(1305, 542, '_wpb_vc_js_status', 'false'),
(1306, 542, 'enable_post_custom_sidebar_layout_value', 'false'),
(1307, 542, 'sidebar_for_default_value', 'none'),
(1308, 542, 'sidebars_available_value', 'defaultblogsidebar'),
(1309, 542, 'posttype_value', 'image'),
(1310, 542, 'videoSource_value', 'youtube'),
(1311, 542, 'gallery_slider_value', '-1'),
(1312, 542, 'audioSource_value', 'embed'),
(1313, 542, 'maple_enable_custom_header_options_value', 'no'),
(1314, 542, 'maple_enable_website_loading_value', 'off'),
(1315, 542, 'maple_content_to_the_top_value', 'on'),
(1316, 542, 'maple_custom_header_pre_value', 'light'),
(1317, 542, 'maple_custom_header_after_value', 'light'),
(1318, 542, 'maple_enable_custom_pagetitle_options_value', 'no'),
(1319, 542, 'maple_header_type_value', 'image'),
(1320, 542, 'maple_pagetitle_image_parallax_value', 'off'),
(1321, 542, 'maple_pagetitle_image_overlay_value', 'off'),
(1322, 542, 'maple_pagetitle_overlay_type_value', 'color'),
(1323, 542, 'maple_pagetitle_overlay_color_value', '333333'),
(1324, 542, 'maple_pagetitle_overlay_pattern_value', 'none'),
(1325, 542, 'maple_pagetitle_overlay_opacity_value', '100%'),
(1326, 542, 'maple_header_color_opacity_value', '100'),
(1327, 542, 'maple_header_pattern_value', 'none'),
(1328, 542, 'maple_banner_slider_value', '-1'),
(1329, 542, 'maple_page_title_padding_value', '50px'),
(1330, 542, 'maple_header_text_alignment_value', 'left'),
(1331, 542, 'maple_hide_pagetitle_value', 'yes'),
(1332, 542, 'maple_header_text_font_value', 'Helvetica Neue'),
(1333, 542, 'maple_header_text_color_value', 'f2f2f2'),
(1334, 542, 'maple_header_text_size_value', '16px'),
(1335, 542, 'maple_header_text_margin_top_value', '20px'),
(1336, 542, 'maple_hide_sec_pagetitle_value', 'yes'),
(1337, 542, 'maple_secondary_title_font_value', 'Helvetica Neue'),
(1338, 542, 'maple_secondary_title_text_color_value', '828282'),
(1339, 542, 'maple_secondary_title_text_size_value', '12px'),
(1340, 542, 'maple_header_secondary_text_margin_top_value', '10px'),
(1341, 542, 'maple_enable_breadcrumbs_value', 'yes'),
(1342, 542, 'maple_breadcrumbs_margin_top_value', '10px'),
(1344, 542, '_thumbnail_id', '543'),
(1347, 546, '_wpb_shortcodes_custom_css', '.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}'),
(1348, 101, '_wpb_shortcodes_custom_css', '.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}'),
(1349, 547, '_wpb_shortcodes_custom_css', '.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}'),
(1350, 548, '_wpb_shortcodes_custom_css', '.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}'),
(1351, 550, '_wp_attached_file', '2020/11/sime-basioli-BRkikoNP0KQ-unsplash-scaled.jpg'),
(1352, 550, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2020/11/sime-basioli-BRkikoNP0KQ-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"sime-basioli-BRkikoNP0KQ-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"sime-basioli-BRkikoNP0KQ-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"sime-basioli-BRkikoNP0KQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"sime-basioli-BRkikoNP0KQ-unsplash-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:47:\"sime-basioli-BRkikoNP0KQ-unsplash-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:47:\"sime-basioli-BRkikoNP0KQ-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"sime-basioli-BRkikoNP0KQ-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"sime-basioli-BRkikoNP0KQ-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"sime-basioli-BRkikoNP0KQ-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"sime-basioli-BRkikoNP0KQ-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"sime-basioli-BRkikoNP0KQ-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"sime-basioli-BRkikoNP0KQ-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"sime-basioli-BRkikoNP0KQ-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"sime-basioli-BRkikoNP0KQ-unsplash-300x300.jpg\";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:45:\"sime-basioli-BRkikoNP0KQ-unsplash-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:45:\"sime-basioli-BRkikoNP0KQ-unsplash-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:45:\"sime-basioli-BRkikoNP0KQ-unsplash-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:45:\"sime-basioli-BRkikoNP0KQ-unsplash-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:45:\"sime-basioli-BRkikoNP0KQ-unsplash-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:{}}s:14:\"original_image\";s:37:\"sime-basioli-BRkikoNP0KQ-unsplash.jpg\";}'),
(1353, 551, '_wp_attached_file', '2020/11/aaron-burson-aE3gcKW1BxU-unsplash-scaled.jpg'),
(1354, 551, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2020/11/aaron-burson-aE3gcKW1BxU-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"aaron-burson-aE3gcKW1BxU-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"aaron-burson-aE3gcKW1BxU-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"aaron-burson-aE3gcKW1BxU-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"aaron-burson-aE3gcKW1BxU-unsplash-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:47:\"aaron-burson-aE3gcKW1BxU-unsplash-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:47:\"aaron-burson-aE3gcKW1BxU-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"aaron-burson-aE3gcKW1BxU-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"aaron-burson-aE3gcKW1BxU-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"aaron-burson-aE3gcKW1BxU-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"aaron-burson-aE3gcKW1BxU-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"aaron-burson-aE3gcKW1BxU-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"aaron-burson-aE3gcKW1BxU-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"aaron-burson-aE3gcKW1BxU-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"aaron-burson-aE3gcKW1BxU-unsplash-300x300.jpg\";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:45:\"aaron-burson-aE3gcKW1BxU-unsplash-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:45:\"aaron-burson-aE3gcKW1BxU-unsplash-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:45:\"aaron-burson-aE3gcKW1BxU-unsplash-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:45:\"aaron-burson-aE3gcKW1BxU-unsplash-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:45:\"aaron-burson-aE3gcKW1BxU-unsplash-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:{}}s:14:\"original_image\";s:37:\"aaron-burson-aE3gcKW1BxU-unsplash.jpg\";}'),
(1355, 552, '_wp_attached_file', '2020/11/ben-neale-sQQf8Ao3dpk-unsplash-scaled.jpg'),
(1356, 552, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:49:\"2020/11/ben-neale-sQQf8Ao3dpk-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"ben-neale-sQQf8Ao3dpk-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"ben-neale-sQQf8Ao3dpk-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"ben-neale-sQQf8Ao3dpk-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"ben-neale-sQQf8Ao3dpk-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"ben-neale-sQQf8Ao3dpk-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:44:\"ben-neale-sQQf8Ao3dpk-unsplash-1366x2048.jpg\";s:5:\"width\";i:1366;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:43:\"ben-neale-sQQf8Ao3dpk-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:40:\"ben-neale-sQQf8Ao3dpk-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:42:\"ben-neale-sQQf8Ao3dpk-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:42:\"ben-neale-sQQf8Ao3dpk-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:43:\"ben-neale-sQQf8Ao3dpk-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:43:\"ben-neale-sQQf8Ao3dpk-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:44:\"ben-neale-sQQf8Ao3dpk-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"ben-neale-sQQf8Ao3dpk-unsplash-300x300.jpg\";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:42:\"ben-neale-sQQf8Ao3dpk-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"ben-neale-sQQf8Ao3dpk-unsplash-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:42:\"ben-neale-sQQf8Ao3dpk-unsplash-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:42:\"ben-neale-sQQf8Ao3dpk-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:42:\"ben-neale-sQQf8Ao3dpk-unsplash-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:{}}s:14:\"original_image\";s:34:\"ben-neale-sQQf8Ao3dpk-unsplash.jpg\";}'),
(1357, 553, '_wp_attached_file', '2020/11/bady-abbas-hxi_yRxODNc-unsplash-scaled.jpg'),
(1358, 553, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:50:\"2020/11/bady-abbas-hxi_yRxODNc-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"bady-abbas-hxi_yRxODNc-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"bady-abbas-hxi_yRxODNc-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"bady-abbas-hxi_yRxODNc-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"bady-abbas-hxi_yRxODNc-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"bady-abbas-hxi_yRxODNc-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"bady-abbas-hxi_yRxODNc-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:44:\"bady-abbas-hxi_yRxODNc-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:41:\"bady-abbas-hxi_yRxODNc-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:43:\"bady-abbas-hxi_yRxODNc-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:43:\"bady-abbas-hxi_yRxODNc-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:44:\"bady-abbas-hxi_yRxODNc-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:44:\"bady-abbas-hxi_yRxODNc-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:45:\"bady-abbas-hxi_yRxODNc-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"bady-abbas-hxi_yRxODNc-unsplash-300x300.jpg\";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:43:\"bady-abbas-hxi_yRxODNc-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"bady-abbas-hxi_yRxODNc-unsplash-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:43:\"bady-abbas-hxi_yRxODNc-unsplash-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:43:\"bady-abbas-hxi_yRxODNc-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"bady-abbas-hxi_yRxODNc-unsplash-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:{}}s:14:\"original_image\";s:35:\"bady-abbas-hxi_yRxODNc-unsplash.jpg\";}'),
(1359, 554, '_wp_attached_file', '2020/11/silvio-kundt-Fixg8KipOg8-unsplash-scaled.jpg'),
(1360, 554, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2020/11/silvio-kundt-Fixg8KipOg8-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"silvio-kundt-Fixg8KipOg8-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"silvio-kundt-Fixg8KipOg8-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"silvio-kundt-Fixg8KipOg8-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"silvio-kundt-Fixg8KipOg8-unsplash-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:47:\"silvio-kundt-Fixg8KipOg8-unsplash-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:47:\"silvio-kundt-Fixg8KipOg8-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"silvio-kundt-Fixg8KipOg8-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"silvio-kundt-Fixg8KipOg8-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"silvio-kundt-Fixg8KipOg8-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"silvio-kundt-Fixg8KipOg8-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"silvio-kundt-Fixg8KipOg8-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"silvio-kundt-Fixg8KipOg8-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"silvio-kundt-Fixg8KipOg8-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"silvio-kundt-Fixg8KipOg8-unsplash-300x300.jpg\";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:45:\"silvio-kundt-Fixg8KipOg8-unsplash-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:45:\"silvio-kundt-Fixg8KipOg8-unsplash-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:45:\"silvio-kundt-Fixg8KipOg8-unsplash-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:45:\"silvio-kundt-Fixg8KipOg8-unsplash-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:45:\"silvio-kundt-Fixg8KipOg8-unsplash-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:{}}s:14:\"original_image\";s:37:\"silvio-kundt-Fixg8KipOg8-unsplash.jpg\";}'),
(1361, 555, '_wp_attached_file', '2020/11/ricardo-gomez-angel-5YM26lUicfU-unsplash-scaled.jpg'),
(1362, 555, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2020/11/ricardo-gomez-angel-5YM26lUicfU-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:54:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:53:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:50:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:52:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:52:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:53:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:53:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:54:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-300x300.jpg\";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:52:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-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:52:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-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:52:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"ricardo-gomez-angel-5YM26lUicfU-unsplash-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:{}}s:14:\"original_image\";s:44:\"ricardo-gomez-angel-5YM26lUicfU-unsplash.jpg\";}'),
(1363, 556, '_wp_attached_file', '2020/11/gerson-repreza-67gCKFVYh7s-unsplash-scaled.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1364, 556, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:54:\"2020/11/gerson-repreza-67gCKFVYh7s-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"gerson-repreza-67gCKFVYh7s-unsplash-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"gerson-repreza-67gCKFVYh7s-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"gerson-repreza-67gCKFVYh7s-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"gerson-repreza-67gCKFVYh7s-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"gerson-repreza-67gCKFVYh7s-unsplash-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"gerson-repreza-67gCKFVYh7s-unsplash-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:48:\"gerson-repreza-67gCKFVYh7s-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:45:\"gerson-repreza-67gCKFVYh7s-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:47:\"gerson-repreza-67gCKFVYh7s-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:47:\"gerson-repreza-67gCKFVYh7s-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:48:\"gerson-repreza-67gCKFVYh7s-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:48:\"gerson-repreza-67gCKFVYh7s-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:49:\"gerson-repreza-67gCKFVYh7s-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"gerson-repreza-67gCKFVYh7s-unsplash-300x300.jpg\";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:47:\"gerson-repreza-67gCKFVYh7s-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:47:\"gerson-repreza-67gCKFVYh7s-unsplash-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:47:\"gerson-repreza-67gCKFVYh7s-unsplash-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:47:\"gerson-repreza-67gCKFVYh7s-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:47:\"gerson-repreza-67gCKFVYh7s-unsplash-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:{}}s:14:\"original_image\";s:39:\"gerson-repreza-67gCKFVYh7s-unsplash.jpg\";}'),
(1365, 557, '_wp_attached_file', '2020/11/ave-calvar-NqXqLPhdbvU-unsplash-scaled.jpg'),
(1366, 557, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:50:\"2020/11/ave-calvar-NqXqLPhdbvU-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"ave-calvar-NqXqLPhdbvU-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"ave-calvar-NqXqLPhdbvU-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"ave-calvar-NqXqLPhdbvU-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"ave-calvar-NqXqLPhdbvU-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"ave-calvar-NqXqLPhdbvU-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"ave-calvar-NqXqLPhdbvU-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:44:\"ave-calvar-NqXqLPhdbvU-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:41:\"ave-calvar-NqXqLPhdbvU-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:43:\"ave-calvar-NqXqLPhdbvU-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:43:\"ave-calvar-NqXqLPhdbvU-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:44:\"ave-calvar-NqXqLPhdbvU-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:44:\"ave-calvar-NqXqLPhdbvU-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:45:\"ave-calvar-NqXqLPhdbvU-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"ave-calvar-NqXqLPhdbvU-unsplash-300x300.jpg\";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:43:\"ave-calvar-NqXqLPhdbvU-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"ave-calvar-NqXqLPhdbvU-unsplash-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:43:\"ave-calvar-NqXqLPhdbvU-unsplash-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:43:\"ave-calvar-NqXqLPhdbvU-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"ave-calvar-NqXqLPhdbvU-unsplash-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:{}}s:14:\"original_image\";s:35:\"ave-calvar-NqXqLPhdbvU-unsplash.jpg\";}'),
(1367, 558, '_wp_attached_file', '2020/11/annie-spratt-6a3nqQ1YwBw-unsplash-scaled.jpg'),
(1368, 558, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1706;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2020/11/annie-spratt-6a3nqQ1YwBw-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"annie-spratt-6a3nqQ1YwBw-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"annie-spratt-6a3nqQ1YwBw-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"annie-spratt-6a3nqQ1YwBw-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"annie-spratt-6a3nqQ1YwBw-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"annie-spratt-6a3nqQ1YwBw-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"annie-spratt-6a3nqQ1YwBw-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"annie-spratt-6a3nqQ1YwBw-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"annie-spratt-6a3nqQ1YwBw-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"annie-spratt-6a3nqQ1YwBw-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"annie-spratt-6a3nqQ1YwBw-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"annie-spratt-6a3nqQ1YwBw-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"annie-spratt-6a3nqQ1YwBw-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"annie-spratt-6a3nqQ1YwBw-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"annie-spratt-6a3nqQ1YwBw-unsplash-300x300.jpg\";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:45:\"annie-spratt-6a3nqQ1YwBw-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"annie-spratt-6a3nqQ1YwBw-unsplash-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:45:\"annie-spratt-6a3nqQ1YwBw-unsplash-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:45:\"annie-spratt-6a3nqQ1YwBw-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"annie-spratt-6a3nqQ1YwBw-unsplash-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:{}}s:14:\"original_image\";s:37:\"annie-spratt-6a3nqQ1YwBw-unsplash.jpg\";}'),
(1369, 559, '_wp_attached_file', '2020/11/ines-alvarez-fdez-_HHjiseEuGw-unsplash-scaled.jpg'),
(1370, 559, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2020/11/ines-alvarez-fdez-_HHjiseEuGw-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:51:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:48:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:50:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:50:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:51:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:51:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:52:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:50:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-300x300.jpg\";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:50:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:50:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-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:50:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-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:50:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:50:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash-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:{}}s:14:\"original_image\";s:42:\"ines-alvarez-fdez-_HHjiseEuGw-unsplash.jpg\";}'),
(1371, 560, '_wp_attached_file', '2020/11/solen-feyissa-AAMldegB0x8-unsplash-scaled.jpg'),
(1372, 560, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:53:\"2020/11/solen-feyissa-AAMldegB0x8-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"solen-feyissa-AAMldegB0x8-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"solen-feyissa-AAMldegB0x8-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"solen-feyissa-AAMldegB0x8-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"solen-feyissa-AAMldegB0x8-unsplash-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:48:\"solen-feyissa-AAMldegB0x8-unsplash-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:48:\"solen-feyissa-AAMldegB0x8-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"solen-feyissa-AAMldegB0x8-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"solen-feyissa-AAMldegB0x8-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"solen-feyissa-AAMldegB0x8-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"solen-feyissa-AAMldegB0x8-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"solen-feyissa-AAMldegB0x8-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"solen-feyissa-AAMldegB0x8-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"solen-feyissa-AAMldegB0x8-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"solen-feyissa-AAMldegB0x8-unsplash-300x300.jpg\";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:46:\"solen-feyissa-AAMldegB0x8-unsplash-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:46:\"solen-feyissa-AAMldegB0x8-unsplash-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:46:\"solen-feyissa-AAMldegB0x8-unsplash-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:46:\"solen-feyissa-AAMldegB0x8-unsplash-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:46:\"solen-feyissa-AAMldegB0x8-unsplash-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:{}}s:14:\"original_image\";s:38:\"solen-feyissa-AAMldegB0x8-unsplash.jpg\";}'),
(1373, 561, '_wp_attached_file', '2020/11/hans-peter-gauster-3y1zF4hIPCg-unsplash-scaled.jpg'),
(1374, 561, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:58:\"2020/11/hans-peter-gauster-3y1zF4hIPCg-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:52:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:49:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:52:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:52:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:53:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-300x300.jpg\";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:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-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:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-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:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-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:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-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:51:\"hans-peter-gauster-3y1zF4hIPCg-unsplash-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:{}}s:14:\"original_image\";s:43:\"hans-peter-gauster-3y1zF4hIPCg-unsplash.jpg\";}'),
(1375, 562, '_wp_attached_file', '2020/11/scott-webb-OxHPDs4WV8Y-unsplash-scaled.jpg'),
(1376, 562, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:50:\"2020/11/scott-webb-OxHPDs4WV8Y-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"scott-webb-OxHPDs4WV8Y-unsplash-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"scott-webb-OxHPDs4WV8Y-unsplash-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"scott-webb-OxHPDs4WV8Y-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"scott-webb-OxHPDs4WV8Y-unsplash-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"scott-webb-OxHPDs4WV8Y-unsplash-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"scott-webb-OxHPDs4WV8Y-unsplash-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:44:\"scott-webb-OxHPDs4WV8Y-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:41:\"scott-webb-OxHPDs4WV8Y-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:43:\"scott-webb-OxHPDs4WV8Y-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:43:\"scott-webb-OxHPDs4WV8Y-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:44:\"scott-webb-OxHPDs4WV8Y-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:44:\"scott-webb-OxHPDs4WV8Y-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:45:\"scott-webb-OxHPDs4WV8Y-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"scott-webb-OxHPDs4WV8Y-unsplash-300x300.jpg\";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:43:\"scott-webb-OxHPDs4WV8Y-unsplash-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"scott-webb-OxHPDs4WV8Y-unsplash-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:43:\"scott-webb-OxHPDs4WV8Y-unsplash-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:43:\"scott-webb-OxHPDs4WV8Y-unsplash-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"scott-webb-OxHPDs4WV8Y-unsplash-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:{}}s:14:\"original_image\";s:35:\"scott-webb-OxHPDs4WV8Y-unsplash.jpg\";}'),
(1377, 563, '_wp_attached_file', '2020/11/jj-ying-8bghKxNU1j0-unsplash-scaled.jpg'),
(1378, 563, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:47:\"2020/11/jj-ying-8bghKxNU1j0-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"jj-ying-8bghKxNU1j0-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"jj-ying-8bghKxNU1j0-unsplash-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"jj-ying-8bghKxNU1j0-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"jj-ying-8bghKxNU1j0-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"jj-ying-8bghKxNU1j0-unsplash-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"jj-ying-8bghKxNU1j0-unsplash-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:41:\"jj-ying-8bghKxNU1j0-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:38:\"jj-ying-8bghKxNU1j0-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:40:\"jj-ying-8bghKxNU1j0-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:40:\"jj-ying-8bghKxNU1j0-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:41:\"jj-ying-8bghKxNU1j0-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:41:\"jj-ying-8bghKxNU1j0-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:42:\"jj-ying-8bghKxNU1j0-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"jj-ying-8bghKxNU1j0-unsplash-300x300.jpg\";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:40:\"jj-ying-8bghKxNU1j0-unsplash-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:40:\"jj-ying-8bghKxNU1j0-unsplash-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:40:\"jj-ying-8bghKxNU1j0-unsplash-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:40:\"jj-ying-8bghKxNU1j0-unsplash-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:40:\"jj-ying-8bghKxNU1j0-unsplash-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:{}}s:14:\"original_image\";s:32:\"jj-ying-8bghKxNU1j0-unsplash.jpg\";}'),
(1379, 564, '_wp_attached_file', '2020/11/nastya-dulhiier-OKOOGO578eo-unsplash-scaled.jpg'),
(1380, 564, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1600;s:4:\"file\";s:55:\"2020/11/nastya-dulhiier-OKOOGO578eo-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"nastya-dulhiier-OKOOGO578eo-unsplash-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"nastya-dulhiier-OKOOGO578eo-unsplash-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"nastya-dulhiier-OKOOGO578eo-unsplash-2048x1280.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:49:\"nastya-dulhiier-OKOOGO578eo-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:46:\"nastya-dulhiier-OKOOGO578eo-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:49:\"nastya-dulhiier-OKOOGO578eo-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:49:\"nastya-dulhiier-OKOOGO578eo-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:50:\"nastya-dulhiier-OKOOGO578eo-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-300x300.jpg\";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:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-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:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-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:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-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:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-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:48:\"nastya-dulhiier-OKOOGO578eo-unsplash-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:{}}s:14:\"original_image\";s:40:\"nastya-dulhiier-OKOOGO578eo-unsplash.jpg\";}'),
(1381, 565, '_wp_attached_file', '2020/11/alina-grubnyak-ZiQkhI7417A-unsplash-scaled.jpg'),
(1382, 565, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:54:\"2020/11/alina-grubnyak-ZiQkhI7417A-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"alina-grubnyak-ZiQkhI7417A-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-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:49:\"alina-grubnyak-ZiQkhI7417A-unsplash-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:49:\"alina-grubnyak-ZiQkhI7417A-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:48:\"alina-grubnyak-ZiQkhI7417A-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:45:\"alina-grubnyak-ZiQkhI7417A-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:48:\"alina-grubnyak-ZiQkhI7417A-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:48:\"alina-grubnyak-ZiQkhI7417A-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:49:\"alina-grubnyak-ZiQkhI7417A-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-300x300.jpg\";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:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-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:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-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:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-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:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-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:47:\"alina-grubnyak-ZiQkhI7417A-unsplash-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:{}}s:14:\"original_image\";s:39:\"alina-grubnyak-ZiQkhI7417A-unsplash.jpg\";}'),
(1383, 566, '_wp_attached_file', '2020/11/scott-webb-w0-PjhhbdS8-unsplash-scaled.jpg'),
(1384, 566, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1831;s:4:\"file\";s:50:\"2020/11/scott-webb-w0-PjhhbdS8-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"scott-webb-w0-PjhhbdS8-unsplash-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"scott-webb-w0-PjhhbdS8-unsplash-1024x732.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:732;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"scott-webb-w0-PjhhbdS8-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"scott-webb-w0-PjhhbdS8-unsplash-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"scott-webb-w0-PjhhbdS8-unsplash-1536x1098.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1098;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"scott-webb-w0-PjhhbdS8-unsplash-2048x1464.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:44:\"scott-webb-w0-PjhhbdS8-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:41:\"scott-webb-w0-PjhhbdS8-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:43:\"scott-webb-w0-PjhhbdS8-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:43:\"scott-webb-w0-PjhhbdS8-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:44:\"scott-webb-w0-PjhhbdS8-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:44:\"scott-webb-w0-PjhhbdS8-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:45:\"scott-webb-w0-PjhhbdS8-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"scott-webb-w0-PjhhbdS8-unsplash-300x300.jpg\";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:43:\"scott-webb-w0-PjhhbdS8-unsplash-600x429.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"scott-webb-w0-PjhhbdS8-unsplash-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:43:\"scott-webb-w0-PjhhbdS8-unsplash-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:43:\"scott-webb-w0-PjhhbdS8-unsplash-600x429.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"scott-webb-w0-PjhhbdS8-unsplash-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:{}}s:14:\"original_image\";s:35:\"scott-webb-w0-PjhhbdS8-unsplash.jpg\";}'),
(1385, 567, '_wp_attached_file', '2020/11/agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-scaled.jpg'),
(1386, 567, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2020/11/agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:54:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:53:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:50:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:52:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:52:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:53:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:53:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:54:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-300x300.jpg\";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:52:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-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:52:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-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:52:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash-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:{}}s:14:\"original_image\";s:44:\"agnieszka-kowalczyk-DFHfqEU2_iU-unsplash.jpg\";}'),
(1387, 568, '_wp_attached_file', '2020/11/quentin-grignet-sz8iZG7ZDUM-unsplash-scaled.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1388, 568, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:55:\"2020/11/quentin-grignet-sz8iZG7ZDUM-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"quentin-grignet-sz8iZG7ZDUM-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-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:50:\"quentin-grignet-sz8iZG7ZDUM-unsplash-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:50:\"quentin-grignet-sz8iZG7ZDUM-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:49:\"quentin-grignet-sz8iZG7ZDUM-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:46:\"quentin-grignet-sz8iZG7ZDUM-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:49:\"quentin-grignet-sz8iZG7ZDUM-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:49:\"quentin-grignet-sz8iZG7ZDUM-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:50:\"quentin-grignet-sz8iZG7ZDUM-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-300x300.jpg\";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:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-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:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-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:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-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:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-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:48:\"quentin-grignet-sz8iZG7ZDUM-unsplash-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:{}}s:14:\"original_image\";s:40:\"quentin-grignet-sz8iZG7ZDUM-unsplash.jpg\";}'),
(1389, 569, '_wp_attached_file', '2020/11/filmplusdigital-aYTeEuoObOA-unsplash-scaled.jpg'),
(1390, 569, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1150;s:4:\"file\";s:55:\"2020/11/filmplusdigital-aYTeEuoObOA-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"filmplusdigital-aYTeEuoObOA-unsplash-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"filmplusdigital-aYTeEuoObOA-unsplash-1024x460.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"filmplusdigital-aYTeEuoObOA-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"filmplusdigital-aYTeEuoObOA-unsplash-768x345.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"filmplusdigital-aYTeEuoObOA-unsplash-1536x690.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"filmplusdigital-aYTeEuoObOA-unsplash-2048x920.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:49:\"filmplusdigital-aYTeEuoObOA-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:46:\"filmplusdigital-aYTeEuoObOA-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:48:\"filmplusdigital-aYTeEuoObOA-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:48:\"filmplusdigital-aYTeEuoObOA-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:49:\"filmplusdigital-aYTeEuoObOA-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:49:\"filmplusdigital-aYTeEuoObOA-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:50:\"filmplusdigital-aYTeEuoObOA-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"filmplusdigital-aYTeEuoObOA-unsplash-300x300.jpg\";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:48:\"filmplusdigital-aYTeEuoObOA-unsplash-600x269.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"filmplusdigital-aYTeEuoObOA-unsplash-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:48:\"filmplusdigital-aYTeEuoObOA-unsplash-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:48:\"filmplusdigital-aYTeEuoObOA-unsplash-600x269.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"filmplusdigital-aYTeEuoObOA-unsplash-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:{}}s:14:\"original_image\";s:40:\"filmplusdigital-aYTeEuoObOA-unsplash.jpg\";}'),
(1391, 570, '_wp_attached_file', '2020/11/dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-scaled.jpg'),
(1392, 570, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2020/11/dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:51:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:48:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:50:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:50:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:51:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:51:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:52:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:50:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-300x300.jpg\";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:50:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:50:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-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:50:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-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:50:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:50:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash-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:{}}s:14:\"original_image\";s:42:\"dhaval-tejlavwala-ZYD9y6tjjV0-unsplash.jpg\";}'),
(1393, 571, '_wp_attached_file', '2020/11/alexander-R9STtQ_2Mio-unsplash-scaled.jpg'),
(1394, 571, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:49:\"2020/11/alexander-R9STtQ_2Mio-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"alexander-R9STtQ_2Mio-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"alexander-R9STtQ_2Mio-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"alexander-R9STtQ_2Mio-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"alexander-R9STtQ_2Mio-unsplash-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:44:\"alexander-R9STtQ_2Mio-unsplash-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:44:\"alexander-R9STtQ_2Mio-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:43:\"alexander-R9STtQ_2Mio-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:40:\"alexander-R9STtQ_2Mio-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:42:\"alexander-R9STtQ_2Mio-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:42:\"alexander-R9STtQ_2Mio-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:43:\"alexander-R9STtQ_2Mio-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:43:\"alexander-R9STtQ_2Mio-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:44:\"alexander-R9STtQ_2Mio-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"alexander-R9STtQ_2Mio-unsplash-300x300.jpg\";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:42:\"alexander-R9STtQ_2Mio-unsplash-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:42:\"alexander-R9STtQ_2Mio-unsplash-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:42:\"alexander-R9STtQ_2Mio-unsplash-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:42:\"alexander-R9STtQ_2Mio-unsplash-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:42:\"alexander-R9STtQ_2Mio-unsplash-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:{}}s:14:\"original_image\";s:34:\"alexander-R9STtQ_2Mio-unsplash.jpg\";}'),
(1395, 572, '_wp_attached_file', '2020/11/andre-furtado-YogNFEK9AdI-unsplash-scaled.jpg'),
(1396, 572, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2020/11/andre-furtado-YogNFEK9AdI-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"andre-furtado-YogNFEK9AdI-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"andre-furtado-YogNFEK9AdI-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"andre-furtado-YogNFEK9AdI-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"andre-furtado-YogNFEK9AdI-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"andre-furtado-YogNFEK9AdI-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"andre-furtado-YogNFEK9AdI-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"andre-furtado-YogNFEK9AdI-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"andre-furtado-YogNFEK9AdI-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"andre-furtado-YogNFEK9AdI-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"andre-furtado-YogNFEK9AdI-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"andre-furtado-YogNFEK9AdI-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"andre-furtado-YogNFEK9AdI-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"andre-furtado-YogNFEK9AdI-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"andre-furtado-YogNFEK9AdI-unsplash-300x300.jpg\";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:46:\"andre-furtado-YogNFEK9AdI-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"andre-furtado-YogNFEK9AdI-unsplash-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:46:\"andre-furtado-YogNFEK9AdI-unsplash-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:46:\"andre-furtado-YogNFEK9AdI-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"andre-furtado-YogNFEK9AdI-unsplash-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:{}}s:14:\"original_image\";s:38:\"andre-furtado-YogNFEK9AdI-unsplash.jpg\";}'),
(1397, 573, '_wp_attached_file', '2020/11/peter-mode-7yy11Tepd98-unsplash-scaled.jpg'),
(1398, 573, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1706;s:6:\"height\";i:2560;s:4:\"file\";s:50:\"2020/11/peter-mode-7yy11Tepd98-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"peter-mode-7yy11Tepd98-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"peter-mode-7yy11Tepd98-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"peter-mode-7yy11Tepd98-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"peter-mode-7yy11Tepd98-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"peter-mode-7yy11Tepd98-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"peter-mode-7yy11Tepd98-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:44:\"peter-mode-7yy11Tepd98-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:41:\"peter-mode-7yy11Tepd98-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:43:\"peter-mode-7yy11Tepd98-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:43:\"peter-mode-7yy11Tepd98-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:44:\"peter-mode-7yy11Tepd98-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:44:\"peter-mode-7yy11Tepd98-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:45:\"peter-mode-7yy11Tepd98-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"peter-mode-7yy11Tepd98-unsplash-300x300.jpg\";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:43:\"peter-mode-7yy11Tepd98-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"peter-mode-7yy11Tepd98-unsplash-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:43:\"peter-mode-7yy11Tepd98-unsplash-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:43:\"peter-mode-7yy11Tepd98-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"peter-mode-7yy11Tepd98-unsplash-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:{}}s:14:\"original_image\";s:35:\"peter-mode-7yy11Tepd98-unsplash.jpg\";}'),
(1399, 574, '_wp_attached_file', '2020/11/sam-williams-MTDKcBaetJk-unsplash-scaled.jpg'),
(1400, 574, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2020/11/sam-williams-MTDKcBaetJk-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"sam-williams-MTDKcBaetJk-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"sam-williams-MTDKcBaetJk-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"sam-williams-MTDKcBaetJk-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"sam-williams-MTDKcBaetJk-unsplash-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:47:\"sam-williams-MTDKcBaetJk-unsplash-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:47:\"sam-williams-MTDKcBaetJk-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"sam-williams-MTDKcBaetJk-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"sam-williams-MTDKcBaetJk-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"sam-williams-MTDKcBaetJk-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"sam-williams-MTDKcBaetJk-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"sam-williams-MTDKcBaetJk-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"sam-williams-MTDKcBaetJk-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"sam-williams-MTDKcBaetJk-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"sam-williams-MTDKcBaetJk-unsplash-300x300.jpg\";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:45:\"sam-williams-MTDKcBaetJk-unsplash-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:45:\"sam-williams-MTDKcBaetJk-unsplash-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:45:\"sam-williams-MTDKcBaetJk-unsplash-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:45:\"sam-williams-MTDKcBaetJk-unsplash-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:45:\"sam-williams-MTDKcBaetJk-unsplash-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:{}}s:14:\"original_image\";s:37:\"sam-williams-MTDKcBaetJk-unsplash.jpg\";}'),
(1401, 575, '_wp_attached_file', '2020/11/jay-wennington-tih8-LWp_qc-unsplash-scaled.jpg'),
(1402, 575, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:54:\"2020/11/jay-wennington-tih8-LWp_qc-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"jay-wennington-tih8-LWp_qc-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"jay-wennington-tih8-LWp_qc-unsplash-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"jay-wennington-tih8-LWp_qc-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"jay-wennington-tih8-LWp_qc-unsplash-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"jay-wennington-tih8-LWp_qc-unsplash-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"jay-wennington-tih8-LWp_qc-unsplash-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:48:\"jay-wennington-tih8-LWp_qc-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:45:\"jay-wennington-tih8-LWp_qc-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:47:\"jay-wennington-tih8-LWp_qc-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:47:\"jay-wennington-tih8-LWp_qc-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:48:\"jay-wennington-tih8-LWp_qc-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:48:\"jay-wennington-tih8-LWp_qc-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:49:\"jay-wennington-tih8-LWp_qc-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"jay-wennington-tih8-LWp_qc-unsplash-300x300.jpg\";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:47:\"jay-wennington-tih8-LWp_qc-unsplash-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:47:\"jay-wennington-tih8-LWp_qc-unsplash-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:47:\"jay-wennington-tih8-LWp_qc-unsplash-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:47:\"jay-wennington-tih8-LWp_qc-unsplash-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:47:\"jay-wennington-tih8-LWp_qc-unsplash-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:{}}s:14:\"original_image\";s:39:\"jay-wennington-tih8-LWp_qc-unsplash.jpg\";}'),
(1403, 576, '_wp_attached_file', '2020/11/kieran-manion-mH68LZOoGLY-unsplash-scaled.jpg'),
(1404, 576, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:53:\"2020/11/kieran-manion-mH68LZOoGLY-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"kieran-manion-mH68LZOoGLY-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"kieran-manion-mH68LZOoGLY-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"kieran-manion-mH68LZOoGLY-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"kieran-manion-mH68LZOoGLY-unsplash-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:48:\"kieran-manion-mH68LZOoGLY-unsplash-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"kieran-manion-mH68LZOoGLY-unsplash-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"kieran-manion-mH68LZOoGLY-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"kieran-manion-mH68LZOoGLY-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"kieran-manion-mH68LZOoGLY-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"kieran-manion-mH68LZOoGLY-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"kieran-manion-mH68LZOoGLY-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"kieran-manion-mH68LZOoGLY-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"kieran-manion-mH68LZOoGLY-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"kieran-manion-mH68LZOoGLY-unsplash-300x300.jpg\";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:46:\"kieran-manion-mH68LZOoGLY-unsplash-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:46:\"kieran-manion-mH68LZOoGLY-unsplash-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:46:\"kieran-manion-mH68LZOoGLY-unsplash-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:46:\"kieran-manion-mH68LZOoGLY-unsplash-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:46:\"kieran-manion-mH68LZOoGLY-unsplash-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:{}}s:14:\"original_image\";s:38:\"kieran-manion-mH68LZOoGLY-unsplash.jpg\";}'),
(1405, 577, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-17-at-18.21.20.png'),
(1406, 577, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:3548;s:6:\"height\";i:1060;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-17-at-18.21.20.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-17-at-18.21.20-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.21.20-1024x306.png\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.21.20-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.21.20-768x229.png\";s:5:\"width\";i:768;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.21.20-1536x459.png\";s:5:\"width\";i:1536;s:6:\"height\";i:459;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.21.20-2048x612.png\";s:5:\"width\";i:2048;s:6:\"height\";i:612;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.21.20-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-17-at-18.21.20-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.21.20-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.21.20-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.21.20-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.21.20-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.21.20-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:46:\"Screen-Shot-2020-11-17-at-18.21.20-600x179.png\";s:5:\"width\";i:600;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.21.20-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:46:\"Screen-Shot-2020-11-17-at-18.21.20-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:46:\"Screen-Shot-2020-11-17-at-18.21.20-600x179.png\";s:5:\"width\";i:600;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.21.20-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:{}}}'),
(1407, 578, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(1408, 579, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}'),
(1409, 580, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(1410, 581, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-17-at-18.31.30.png');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1411, 581, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:3548;s:6:\"height\";i:1182;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-17-at-18.31.30.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.31.30-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.31.30-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.31.30-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.31.30-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.31.30-1536x512.png\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.31.30-2048x682.png\";s:5:\"width\";i:2048;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.31.30-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-17-at-18.31.30-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.31.30-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.31.30-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.31.30-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.31.30-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.31.30-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:46:\"Screen-Shot-2020-11-17-at-18.31.30-600x200.png\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.31.30-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:46:\"Screen-Shot-2020-11-17-at-18.31.30-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:46:\"Screen-Shot-2020-11-17-at-18.31.30-600x200.png\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.31.30-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:{}}}'),
(1412, 582, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-17-at-18.29.36.png'),
(1413, 582, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:3548;s:6:\"height\";i:1060;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-17-at-18.29.36.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-17-at-18.29.36-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.29.36-1024x306.png\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.29.36-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.29.36-768x229.png\";s:5:\"width\";i:768;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.29.36-1536x459.png\";s:5:\"width\";i:1536;s:6:\"height\";i:459;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.29.36-2048x612.png\";s:5:\"width\";i:2048;s:6:\"height\";i:612;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.29.36-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-17-at-18.29.36-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.29.36-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.29.36-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.29.36-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.29.36-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.29.36-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.29.36-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:46:\"Screen-Shot-2020-11-17-at-18.29.36-600x179.png\";s:5:\"width\";i:600;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.29.36-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:46:\"Screen-Shot-2020-11-17-at-18.29.36-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:46:\"Screen-Shot-2020-11-17-at-18.29.36-600x179.png\";s:5:\"width\";i:600;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.29.36-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:{}}}'),
(1414, 583, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-17-at-18.21.20-1.png'),
(1415, 583, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:3548;s:6:\"height\";i:1060;s:4:\"file\";s:48:\"2020/11/Screen-Shot-2020-11-17-at-18.21.20-1.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.21.20-1-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.21.20-1-1024x306.png\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1-768x229.png\";s:5:\"width\";i:768;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.21.20-1-1536x459.png\";s:5:\"width\";i:1536;s:6:\"height\";i:459;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.21.20-1-2048x612.png\";s:5:\"width\";i:2048;s:6:\"height\";i:612;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.21.20-1-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.21.20-1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.21.20-1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.21.20-1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-11-17-at-18.21.20-1-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1-600x179.png\";s:5:\"width\";i:600;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1-600x179.png\";s:5:\"width\";i:600;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.21.20-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1416, 584, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-17-at-18.15.11.png'),
(1417, 584, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:4610;s:6:\"height\";i:1388;s:4:\"file\";s:46:\"2020/11/Screen-Shot-2020-11-17-at-18.15.11.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screen-Shot-2020-11-17-at-18.15.11-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.15.11-1024x308.png\";s:5:\"width\";i:1024;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.15.11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.15.11-768x231.png\";s:5:\"width\";i:768;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.15.11-1536x462.png\";s:5:\"width\";i:1536;s:6:\"height\";i:462;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.15.11-2048x617.png\";s:5:\"width\";i:2048;s:6:\"height\";i:617;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.15.11-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"Screen-Shot-2020-11-17-at-18.15.11-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.15.11-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.15.11-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.15.11-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-11-17-at-18.15.11-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.15.11-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.15.11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.15.11-600x181.png\";s:5:\"width\";i:600;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.15.11-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:46:\"Screen-Shot-2020-11-17-at-18.15.11-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:46:\"Screen-Shot-2020-11-17-at-18.15.11-600x181.png\";s:5:\"width\";i:600;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.15.11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1418, 585, '_wp_attached_file', '2020/11/Screen-Shot-2020-11-17-at-18.31.30-1.png'),
(1419, 585, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:3548;s:6:\"height\";i:1182;s:4:\"file\";s:48:\"2020/11/Screen-Shot-2020-11-17-at-18.31.30-1.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.31.30-1-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.31.30-1-1536x512.png\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.31.30-1-2048x682.png\";s:5:\"width\";i:2048;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.31.30-1-1000x563.png\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-11-17-at-18.31.30-1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.31.30-1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-11-17-at-18.31.30-1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-11-17-at-18.31.30-1-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-600x200.png\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-600x200.png\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-11-17-at-18.31.30-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1420, 586, '_wp_attached_file', '2020/11/silvio-kundt-Fixg8KipOg8-unsplash_edited-scaled.jpg'),
(1421, 586, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:59:\"2020/11/silvio-kundt-Fixg8KipOg8-unsplash_edited-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-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:54:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-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:54:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:53:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:50:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:53:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:53:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:54:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-300x300.jpg\";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:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-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:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-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:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-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:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-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:52:\"silvio-kundt-Fixg8KipOg8-unsplash_edited-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:{}}s:14:\"original_image\";s:44:\"silvio-kundt-Fixg8KipOg8-unsplash_edited.jpg\";}'),
(1422, 587, '_wp_attached_file', '2020/11/quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258.jpg'),
(1423, 587, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:716;s:4:\"file\";s:77:\"2020/11/quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:76:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-300x84.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:78:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-1024x286.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-768x215.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:78:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-1536x430.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:78:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-2048x573.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:78:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:75:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:78:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-500x716.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:716;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:78:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-1000x716.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:716;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:4:{s:4:\"file\";s:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-600x168.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-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:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-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:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-600x168.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:77:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled-e1605603170258-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:{}}s:14:\"original_image\";s:47:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited.jpg\";}'),
(1424, 587, '_wp_attachment_backup_sizes', 'a:20:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2560;s:6:\"height\";i:925;s:4:\"file\";s:54:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-scaled.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-300x108.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-768x278.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:56:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-1024x370.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:56:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-1536x555.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:56:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-2048x740.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_blog-orig\";a:4:{s:4:\"file\";s:56:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_mini-orig\";a:4:{s:4:\"file\";s:53:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"maple_portfolio-orig\";a:4:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"maple_regular-orig\";a:4:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_wide-orig\";a:4:{s:4:\"file\";s:56:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_tall-orig\";a:4:{s:4:\"file\";s:56:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"maple_widetall-orig\";a:4:{s:4:\"file\";s:57:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-600x217.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-600x217.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:55:\"quentin-grignet-sz8iZG7ZDUM-unsplash_edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),
(1425, 588, '_wpb_shortcodes_custom_css', '.vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1426, 589, '_wp_attached_file', '2020/11/ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-scaled.jpg'),
(1427, 589, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:66:\"2020/11/ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:61:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:60:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:57:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:59:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:59:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:60:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:60:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:61:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-300x300.jpg\";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:59:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-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:59:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-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:59:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited-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:{}}s:14:\"original_image\";s:51:\"ricardo-gomez-angel-5YM26lUicfU-unsplash_edited.jpg\";}'),
(1429, 591, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1605605033510{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}'),
(1430, 592, '_wpb_shortcodes_custom_css', '.vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1431, 593, '_wpb_shortcodes_custom_css', '.vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1432, 594, '_wpb_shortcodes_custom_css', '.vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1433, 595, '_wpb_shortcodes_custom_css', '.vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1434, 596, '_wpb_shortcodes_custom_css', '.vc_custom_1605605624440{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/38854596_2179926098920639_5832582175131697152_n.jpg?id=209) !important;}.vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1435, 597, '_wpb_shortcodes_custom_css', '.vc_custom_1605605787886{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1436, 598, '_wpb_shortcodes_custom_css', '.vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1437, 599, '_wpb_shortcodes_custom_css', '.vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1438, 600, '_wpb_shortcodes_custom_css', '.vc_custom_1605606180054{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1439, 601, '_wpb_shortcodes_custom_css', '.vc_custom_1605606345298{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1440, 602, '_wpb_shortcodes_custom_css', '.vc_custom_1605606375164{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605606427050{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg?id=388) !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1441, 603, '_wpb_shortcodes_custom_css', '.vc_custom_1605606375164{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1442, 605, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1605605033510{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}'),
(1443, 606, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1605609465581{margin-top: 100px !important;margin-bottom: 100px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}'),
(1444, 607, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1605609592959{margin-top: 100px !important;margin-bottom: 100px !important;background-color: #f0f0f0 !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1476030875969{padding-right: 20px !important;}.vc_custom_1476030881601{padding-left: 20px !important;}'),
(1445, 608, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}'),
(1446, 610, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1605610095386{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}'),
(1448, 611, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1605610095386{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605610172543{background-color: #f0f0f0 !important;}'),
(1449, 614, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1605610247163{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605610282159{background-color: #f0f0f0 !important;}'),
(1450, 613, '_wpb_shortcodes_custom_css', '.vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}.vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1451, 615, '_wpb_shortcodes_custom_css', '.vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1605610247163{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}.vc_custom_1605611018824{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605610282159{background-color: #f0f0f0 !important;}'),
(1452, 620, '_wp_attached_file', '2020/11/pexels-pixabay-210158-scaled.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1453, 620, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:40:\"2020/11/pexels-pixabay-210158-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"pexels-pixabay-210158-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"pexels-pixabay-210158-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-pixabay-210158-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"pexels-pixabay-210158-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-210158-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-210158-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:34:\"pexels-pixabay-210158-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:31:\"pexels-pixabay-210158-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:33:\"pexels-pixabay-210158-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:33:\"pexels-pixabay-210158-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:34:\"pexels-pixabay-210158-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:34:\"pexels-pixabay-210158-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-210158-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"pexels-pixabay-210158-300x300.jpg\";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:33:\"pexels-pixabay-210158-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:33:\"pexels-pixabay-210158-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:33:\"pexels-pixabay-210158-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:33:\"pexels-pixabay-210158-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:33:\"pexels-pixabay-210158-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:{}}s:14:\"original_image\";s:25:\"pexels-pixabay-210158.jpg\";}'),
(1454, 621, '_wpb_shortcodes_custom_css', '.vc_custom_1605617404393{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}'),
(1455, 622, '_wp_attached_file', '2020/11/photo-1516432887776-cf02336463c7_edited-scaled.jpg'),
(1456, 622, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:58:\"2020/11/photo-1516432887776-cf02336463c7_edited-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"photo-1516432887776-cf02336463c7_edited-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"photo-1516432887776-cf02336463c7_edited-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"photo-1516432887776-cf02336463c7_edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"photo-1516432887776-cf02336463c7_edited-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:53:\"photo-1516432887776-cf02336463c7_edited-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:53:\"photo-1516432887776-cf02336463c7_edited-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:52:\"photo-1516432887776-cf02336463c7_edited-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:49:\"photo-1516432887776-cf02336463c7_edited-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:51:\"photo-1516432887776-cf02336463c7_edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:51:\"photo-1516432887776-cf02336463c7_edited-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:52:\"photo-1516432887776-cf02336463c7_edited-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:52:\"photo-1516432887776-cf02336463c7_edited-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:53:\"photo-1516432887776-cf02336463c7_edited-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"photo-1516432887776-cf02336463c7_edited-300x300.jpg\";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:51:\"photo-1516432887776-cf02336463c7_edited-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:51:\"photo-1516432887776-cf02336463c7_edited-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:51:\"photo-1516432887776-cf02336463c7_edited-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:51:\"photo-1516432887776-cf02336463c7_edited-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:51:\"photo-1516432887776-cf02336463c7_edited-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:{}}s:14:\"original_image\";s:43:\"photo-1516432887776-cf02336463c7_edited.jpg\";}'),
(1457, 623, '_wp_attached_file', '2020/11/vita-vilcina-VMLGC5A3QTE-unsplash-scaled.jpg'),
(1458, 623, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1696;s:4:\"file\";s:52:\"2020/11/vita-vilcina-VMLGC5A3QTE-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"vita-vilcina-VMLGC5A3QTE-unsplash-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"vita-vilcina-VMLGC5A3QTE-unsplash-1536x1017.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1017;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"vita-vilcina-VMLGC5A3QTE-unsplash-2048x1356.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"vita-vilcina-VMLGC5A3QTE-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"vita-vilcina-VMLGC5A3QTE-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"vita-vilcina-VMLGC5A3QTE-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"vita-vilcina-VMLGC5A3QTE-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"vita-vilcina-VMLGC5A3QTE-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-300x300.jpg\";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:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-600x397.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-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:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-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:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-600x397.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"vita-vilcina-VMLGC5A3QTE-unsplash-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:{}}s:14:\"original_image\";s:37:\"vita-vilcina-VMLGC5A3QTE-unsplash.jpg\";}'),
(1459, 624, '_wp_attached_file', '2020/11/karl-magnuson-LaHgrqo1ZRk-unsplash-scaled.jpg'),
(1460, 624, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:53:\"2020/11/karl-magnuson-LaHgrqo1ZRk-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"karl-magnuson-LaHgrqo1ZRk-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-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:48:\"karl-magnuson-LaHgrqo1ZRk-unsplash-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:48:\"karl-magnuson-LaHgrqo1ZRk-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:47:\"karl-magnuson-LaHgrqo1ZRk-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:44:\"karl-magnuson-LaHgrqo1ZRk-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:47:\"karl-magnuson-LaHgrqo1ZRk-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:47:\"karl-magnuson-LaHgrqo1ZRk-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:48:\"karl-magnuson-LaHgrqo1ZRk-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-300x300.jpg\";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:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-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:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-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:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-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:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-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:46:\"karl-magnuson-LaHgrqo1ZRk-unsplash-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:{}}s:14:\"original_image\";s:38:\"karl-magnuson-LaHgrqo1ZRk-unsplash.jpg\";}'),
(1461, 625, '_wp_attached_file', '2020/11/karen-kayser-rdtkE1fHi6c-unsplash-scaled.jpg'),
(1462, 625, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2020/11/karen-kayser-rdtkE1fHi6c-unsplash-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"karen-kayser-rdtkE1fHi6c-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"karen-kayser-rdtkE1fHi6c-unsplash-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"karen-kayser-rdtkE1fHi6c-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"karen-kayser-rdtkE1fHi6c-unsplash-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"karen-kayser-rdtkE1fHi6c-unsplash-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"karen-kayser-rdtkE1fHi6c-unsplash-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:46:\"karen-kayser-rdtkE1fHi6c-unsplash-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:43:\"karen-kayser-rdtkE1fHi6c-unsplash-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:45:\"karen-kayser-rdtkE1fHi6c-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:45:\"karen-kayser-rdtkE1fHi6c-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:46:\"karen-kayser-rdtkE1fHi6c-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:46:\"karen-kayser-rdtkE1fHi6c-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:47:\"karen-kayser-rdtkE1fHi6c-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"karen-kayser-rdtkE1fHi6c-unsplash-300x300.jpg\";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:45:\"karen-kayser-rdtkE1fHi6c-unsplash-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:45:\"karen-kayser-rdtkE1fHi6c-unsplash-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:45:\"karen-kayser-rdtkE1fHi6c-unsplash-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:45:\"karen-kayser-rdtkE1fHi6c-unsplash-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:45:\"karen-kayser-rdtkE1fHi6c-unsplash-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:{}}s:14:\"original_image\";s:37:\"karen-kayser-rdtkE1fHi6c-unsplash.jpg\";}'),
(1463, 626, '_wp_attached_file', '2020/11/karen-kayser-rdtkE1fHi6c-unsplash_edited-scaled.jpg'),
(1464, 626, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:852;s:4:\"file\";s:59:\"2020/11/karen-kayser-rdtkE1fHi6c-unsplash_edited-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-768x255.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-1536x511.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-2048x681.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_blog\";a:4:{s:4:\"file\";s:53:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-1000x563.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_mini\";a:4:{s:4:\"file\";s:50:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"maple_portfolio\";a:4:{s:4:\"file\";s:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"maple_regular\";a:4:{s:4:\"file\";s:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_wide\";a:4:{s:4:\"file\";s:53:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"maple_tall\";a:4:{s:4:\"file\";s:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-500x998.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:998;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"maple_widetall\";a:4:{s:4:\"file\";s:53:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-1000x998.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:998;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-300x300.jpg\";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:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-600x200.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-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:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-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:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-600x200.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"karen-kayser-rdtkE1fHi6c-unsplash_edited-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:{}}s:14:\"original_image\";s:44:\"karen-kayser-rdtkE1fHi6c-unsplash_edited.jpg\";}'),
(1466, 628, '_wpb_shortcodes_custom_css', '.vc_custom_1605617404393{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}'),
(1467, 629, '_wpb_shortcodes_custom_css', '.vc_custom_1605617404393{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}'),
(1468, 630, '_wpb_shortcodes_custom_css', '.vc_custom_1605617404393{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1605846173049{background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}'),
(1469, 632, '_wpb_shortcodes_custom_css', '.vc_custom_1605846315561{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1605846226709{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}'),
(1470, 633, '_wpb_shortcodes_custom_css', '.vc_custom_1605846315561{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}.vc_custom_1605846226709{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}'),
(1471, 631, '_wpb_shortcodes_custom_css', '.vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1472, 634, '_wpb_shortcodes_custom_css', '.vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1473, 635, '_wpb_shortcodes_custom_css', '.vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1474, 636, '_wpb_shortcodes_custom_css', '.vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1475, 637, '_wpb_shortcodes_custom_css', '.vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1476, 638, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1477, 639, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1478, 640, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1479, 641, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1480, 642, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1481, 643, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1482, 644, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1483, 645, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1484, 646, '_wpb_shortcodes_custom_css', '.vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}'),
(1485, 647, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1486, 648, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}.vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}'),
(1487, 650, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}'),
(1488, 651, '_wpb_shortcodes_custom_css', '.vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}'),
(1489, 655, '_wpb_shortcodes_custom_css', '.vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(1490, 29, '_wpb_shortcodes_custom_css', '.vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(1491, 659, '_wpb_shortcodes_custom_css', '.vc_custom_1605857200127{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(1492, 660, '_wpb_shortcodes_custom_css', '.vc_custom_1605857263014{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(1493, 661, '_wpb_shortcodes_custom_css', '.vc_custom_1605857293272{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(1494, 664, '_wpb_shortcodes_custom_css', '.vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}.vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}.vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}.vc_custom_1480356215449{padding-top: 100px !important;}.vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),
(1495, 670, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605860464738{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(1496, 671, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605860464738{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(1497, 672, '_wpb_shortcodes_custom_css', '.vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}.vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}'),
(1498, 674, '_wpb_shortcodes_custom_css', '.vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(1499, 677, '_wpb_shortcodes_custom_css', '.vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(1500, 678, '_wpb_shortcodes_custom_css', '.vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(1501, 679, '_wpb_shortcodes_custom_css', '.vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}'),
(1502, 239, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605957126547{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(1503, 688, '_wpb_shortcodes_custom_css', '.vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1605957126547{padding-top: 80px !important;padding-bottom: 60px !important;}.vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}.vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1462898611266{margin-bottom: 40px !important;}.vc_custom_1605249862210{background-color: #ffffff !important;}'),
(1504, 689, '_wpb_shortcodes_custom_css', '.vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}.vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_posts`
--

CREATE TABLE `wp_posts` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `post_author` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2020-11-10 03:20:10', '2020-11-10 03:20:10', '<!-- wp:paragraph -->\r\n<div class=\"yF0IC\" data-hook=\"post-description\">\r\n<article class=\"blog-post-page-font\">\r\n<div class=\"post-content__body\">\r\n<div class=\"lV_uZ _1LHlu _1ltva\" data-rce-version=\"8.3.0\">\r\n<div class=\"kcuBq _1PkHV blog-post-page-font _3f8WX uatYj\" dir=\"ltr\">\r\n<div class=\"kaqlz _1FQ9t blog-post-page-font zJfAe\">\r\n<div class=\"lead-text\">\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Dry heat and drought in one season and flooding rains in another is part and parcel of our global food futures to 2050. Also on the radar is a tidal wave of change caused by global warming, population growth, digital futures and deep systemic issues in food futures to 2050 and beyond. These issues are influencing food security, scarcity and trends like biotechnology and precision agriculture in the food industry.</span></p>\r\n</div>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">It is argued in this article that bringing sustainability to our fluctuating food futures requires the workshopping of holistic problems and opportunities across multiple emerging issues to align current practices with emerging challenges.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">The method used in writing this article is Emerging Issues Analysis (EIA) by Graham Molitor. It is one of the Futures Thinking tools and methods from Professor Sohail Inayatullah’s Six Pillars of Futures Studies (2008).</span></p>\r\n<p>&nbsp;</p>\r\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Global emerging issues on the demand and supply of food</span></strong></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Emerging issues may make huge changes to food futures, but people really aren’t aware of their presence. The consequence of the issue may seem a long way off in the future, yet may be building in the background with no statistics pervasive in the popular media.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Statistics about demand for food are always being monitored, by authorities interested in the consumer price index, i.e., when the price of food changes and it has a small impact on inflation, but this is only news for some people. Statistics are also monitored closely by food suppliers (growers, sellers, packaging companies, restaurateurs and food outlets, regulators, health providers and educators) who flex to the desires of consumers.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">These issues fit well with </span><a href=\"https://opus.lib.uts.edu.au/bitstream/10453/51643/4/9BACB453-E04F-4BC2-B197-ADD80FF8D36E%20am.pdf\">research</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> theory stating that socio-economic context is linked to environmental futurity – </span><span lang=\"EN-US\" xml:lang=\"EN-US\">suppliers of food are impacted by global warming but also by population growth. By 2050 a population of 9 billion will mean farmers have to feed 310 people per farmer - almost twice as many people than they did just a decade ago.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">At the same time as global populations are growing, farmers are currently experiencing some of the warmest and unseasonably wet and drier months on record. In Queensland, Australia temperatures are </span><a href=\"http://www.climatekelpie.com.au/see-forecasts/australias-future-climate/queenslands-future-climate\">expected</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to rise by 1 degree by 2030 and by up to 4 degrees by 2070 under a high emissions scenario. Further to this problem, </span><a href=\"http://www.bom.gov.au/state-of-the-climate/State-of-the-Climate-2016.pdf\">extreme heat events</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> (the number of extremely hot days each year) have been increasing across the Australian continent, from none in 1910 to 28 every year in 2017.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Fluctuating temperatures influence rainfall patterns. In 2016 France experienced its driest July and August on </span><a href=\"http://library.wmo.int/\">record</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and Switzerland had its driest December on record, while parts of Eastern Australia had their wettest month on record in September. After the driest eight months on record from September 2015 to April 2016, Tasmania in Australia, had its wettest May to December on record resulting in record winter grain production 49% above that of the winter before. In 2014 Brazil had its worst drought in 85 years, and it is home to more seed plants than any other country in the world.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">While global warming is an issue and a trend in itself, we don’t often think about its impact on </span><a href=\"https://www.youtube.com/watch?v=2MIlFNQniYI&amp;feature=youtu.be\">ocean warming and acidif</a><span lang=\"EN-US\" xml:lang=\"EN-US\">ication.</span><span lang=\"EN-US\" xml:lang=\"EN-US\"> Anthropogenic change is putting pressure on the supply of food from land but also from our oceans.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">There are </span><a href=\"http://globalprioritiesproject.org/wp-content/uploads/2016/04/Global-Catastrophic-Risk-Annual-Report-2016-FINAL.pdf\">global risks</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to these emerging issues, such as </span><span lang=\"EN-US\" xml:lang=\"EN-US\">food security, seed protection and development of alternative food sources.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Who is most at risk of going hungry? According to the United Nations, today </span><a href=\"http://publications.wfp.org/2017/mapping-hunger/index.html?_ga=2.119751560.1207568174.1507595817-1250403088.1507595817\">four countries are fighting famine</a><span lang=\"EN-US\" xml:lang=\"EN-US\">: Yemen, Somalia, Nigeria and South Sudan. The UN has 17 Sustainability Development Goals. Sustainability is the capability to advance long-term multi-faceted quality of life. There are numerous </span><a href=\"http://www.un.org/sustainabledevelopment/hunger/\">hunger issues and food security</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> issues</span><span lang=\"EN-US\" xml:lang=\"EN-US\">. Hunger issues identified by the UN include:</span></p>\r\n<ul>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Globally, one in nine people in the world today (795 million) are undernourished</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">The vast majority of the world’s hungry people live in developing countries, where 12.9 per cent of the population is undernourished.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Asia is the continent with the most hungry people – two thirds of the total. The percentage in southern Asia has fallen in recent years but in western Asia it has increased slightly.</span></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Trends that influence food futures</span></strong></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Trends are a line of development that occur over a period of time. </span><span lang=\"EN-US\" xml:lang=\"EN-US\">A number of foods have become fashionable in 2017, like Thai styled roll-up ice-cream, veggie burgers, seaweed, mixed mocktails. New practices have also emerged, such as healthy dinners ordered via virtual reality restaurants and Google drones delivering foods, e.g., around US campuses.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Consumer choice is now being driven by concerns for personal health, ethical growers, taste and home cooking as popularized by a host of reality cooking television shows. This trend, for example, is influencing the product lines of the </span><a href=\"http://brandfinance.com/images/upload/brand_finance_food_and_beverage_report_locked.pdf\">world’s most valuable food brand</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> Nestle, who are now adding healthier food to their product lines.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Nestle is losing billions of dollars because of the trend and is now transforming its products to align to health food futures. The reason for this trend can be found in a 2016 </span><a href=\"http://www.prnewswire.com/news-releases/national-survey-taps-over-1700-dietitians-to-predict-top-2017-food-trends-300376374.html\">survey of 1,700 US dietitians</a><span lang=\"EN-US\" xml:lang=\"EN-US\">,</span><span lang=\"EN-US\" xml:lang=\"EN-US\"> that shows 49% of registered dietitians attribute the change to “mindfulness” eating where consumers will choose health foods over diets – why? Consumers are now better connected to the recommendations of registered dietitians through technology: fit-bits, point of sale apps and social media devices.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Technology trends such as biotechnology continue to offer resistance to viruses and increases in the shelf life of food which decreases food waste e.g. </span><a href=\"http://www.sciencedirect.com/science/article/pii/S0734975014001931\">a new generation of genome editing tools</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> is being developed for plants to help speed up gene discovery and trait development to facilitate both forward and reverse genetics.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">A pervasive technological trend is precision agriculture which creates specific strategies for each field of crops by using drones to monitor crop health, quadcopters to measure the growth of crops, apps to model data, </span><a href=\"http://www.abc.net.au/news/2016-02-11/precision-agriculture/7162914\">lasers</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to sense plant health to match plants to fertilizers and pesticides, and artificial intelligence to match plants to particular soil types. Computers aboard drones will also use the images with algorithms to </span><a href=\"https://www.kaggle.com/c/inaturalist-challenge-at-fgvc-2017\">recognise differences between plant and animal species</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></p>\r\n<p>&nbsp;</p>\r\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Solutions for a more sustainable future of food</span></strong></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Over time, trends can drive problems that require solutions. A range of global solutions are provided below.</span></p>\r\n<ul>\r\n<li><a href=\"http://unesdoc.unesco.org/images/0024/002468/246887E.pdf\">Systemic change</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> is recommended because of the interlinkages between consumer demand, product supply lifecycles and the environment – as technology-assisted populations increase from 6 billion to 9 billion, global incomes are increasing, further disturbing ecosystems, increasing energy use and expanding global industry, while water is in decline.</span></li>\r\n<li><a href=\"https://www.brisbanetimes.com.au/national/queensland/queensland-remains-australias-biggest-greenhouse-gas-emitter-20170711-gx951t.html\">Reduce greenhouse gas emissions</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> via development of carbon sinks, transitioning to electric vehicles, and by de-carbonising the energy sector, with a transitioning to solar and other renewables.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Use specialist </span><a href=\"http://www.gulf-times.com/story/565285/Dutch-firms-offer-solutions-for-Qatar-food-securit\">greenhouse techniques</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to provide stable climates for crops.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Understand the role of fair, equitable and sustainable food practices and trade in contributing to </span><a href=\"http://brandfinance.com/images/upload/brand_finance_food_and_beverage_report_locked.pdf\">the full food brand value chain</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> including links between marketing investment, brand tracking data, stakeholder behaviour and business value.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Protect food sources and plants on </span><a href=\"https://stateoftheworldsplants.com/2016/report/sotwp_2016.pdf\">the endangered list</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and threatened foods such as </span><a href=\"https://www.theguardian.com/environment/2017/sep/26/chips-chocolate-and-coffee-our-food-crops-face-mass-extinction-too\">chocolate</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, honey, </span><a href=\"http://www.bbc.co.uk/news/resources/idt-fa38cb91-bdc0-4229-8cae-1d5c3b447337\">coffee</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and peanut paste, and protect wild food sources not currently gene banked e.g. banana, aubergine and sorghum. A most important preservation and adaptation strategy is biodiversity – variety is the spice of life. This is because predicting temperatures for the planting of a particular crop is unwise when </span><a href=\"https://thefern.org/ag_insider/syrian-seeds-shake-europes-plant-patent-regime/\">a range of crops</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> can self-select for changes in climate.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Support food-related targets of the </span><a href=\"https://web.archive.org/web/20060223053428/http:/www.biodiv.org:80/doc/decisions/COP-06-dec-en.pdf\">Global Strategy for Plant Conservation</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to conserve 70% of the genetic diversity of crops and associated indigenous and local knowledge, and to halt the decline of resources and knowledge sustaining livelihoods, food security and health. In sub-Saharan Africa, studies showed that changes are needed by 2050 to prevent areas growing maize, bananas and beans from becoming unviable, through, for example, </span><a href=\"https://www.bioversityinternational.org/fileadmin/_migrated/uploads/tx_news/Participatory_plant_breeding_to_promote_Farmers__Rights_1254.pdf\">participatory plant breeding</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Identify </span><a href=\"https://stateoftheworldsplants.com/2016/climate-change.html\">which regions are more sensitive</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to climatic drivers than others, and reverse the effects of climate change overall, but especially in arid regions.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Eliminate food waste in the post-harvest supply chain, as more than </span><a href=\"http://www.eco-business.com/news/fixing-food-loss-with-disruptive-tech/\">one-third of food waste occurs before it reaches supermarket shelves</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Link growers to food technologists and tech experts who can create apps and devices that support ethical choices, so that consumers know </span><a href=\"http://www.nationalgeographic.com.au/australia/whats-the-real-price-of-your-groceries.aspx\">the real price of their groceries</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Going Forward</span></strong></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Advances in food technology are tremendously important to beating Malthusian scenarios where populations grow faster than food can be produced. In fact, everyone can </span><a href=\"http://www.un.org/sustainabledevelopment/takeaction/\">take action</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to help transform our food futures – whether it’s from your couch, at home, or outside the house, taking care of your right to elect appropriate leaders, or buying locally and buying smart, or even planting locally and learning about endangered plants to save them from becoming</span> <a href=\"http://www.press.uchicago.edu/books/excerpt/2015/Jordan_Edible_Memory.html\">heirlooms</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> of the past.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Even with advanced equipment, life cycles, and systems, consumers and stakeholders cannot be connected to humane, sustainable futures without foresight and strategic direction. Growers and stakeholders struggle to make their industries sustainable </span><a href=\"https://www.technologyreview.com/s/601935/six-ways-drones-are-revolutionizing-agriculture/\">using AI in agricultural settings</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to automate plant and soil solutions because of drone safety, privacy issues and insurance questions that policy makers must grapple with. Systemic cooperation across boundaries is needed to facilitate outcomes where </span><a href=\"https://www.technologyreview.com/s/601935/six-ways-drones-are-revolutionizing-agriculture/\">AI in the food industry</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> offers new hope to a changing planet.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">The old story is of farmers providing the food basket to feed the global village. The new story is of the global village becoming sustainability farmers.</span></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</article>\r\n</div>\r\n<div class=\"_1yEvn\">\r\n<div class=\"_3YxRQ\" data-hook=\"post-main-actions-desktop\">\r\n<div class=\"ygPzE blog-separator-background-color\"> </div>\r\n<div class=\"_29Euw MQFQm\">\r\n<div id=\"post-social-actions\" class=\"_1nBO7 blog-text-color\" tabindex=\"-1\"> </div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- /wp:paragraph -->', 'The Future of Food - Who Will Be Hungry?', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2020-11-16 21:27:30', '2020-11-16 11:27:30', '', 0, 'http://localhost:8888/wordpress/?p=1', 0, 'post', '', 1),
(2, 1, '2020-11-10 03:20:10', '2020-11-10 03:20:10', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost:8888/wordpress/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2020-11-10 03:20:10', '2020-11-10 03:20:10', '', 0, 'http://localhost:8888/wordpress/?page_id=2', 0, 'page', '', 0),
(3, 1, '2020-11-10 03:20:10', '2020-11-10 03:20:10', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://localhost:8888/wordpress.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2020-11-10 03:20:10', '2020-11-10 03:20:10', '', 0, 'http://localhost:8888/wordpress/?page_id=3', 0, 'page', '', 0),
(8, 1, '2020-11-10 03:44:52', '2020-11-10 03:44:52', '<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <drcolinrusso@gmail.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <drcolinrusso@gmail.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.', 'Contact form 1', '', 'publish', 'closed', 'closed', '', 'contact-form-1', '', '', '2020-11-10 03:44:52', '2020-11-10 03:44:52', '', 0, 'http://localhost:8888/wordpress/?post_type=wpcf7_contact_form&p=8', 0, 'wpcf7_contact_form', '', 0),
(9, 1, '2020-11-10 03:44:54', '2020-11-10 03:44:54', '', 'woocommerce-placeholder', '', 'inherit', 'open', 'closed', '', 'woocommerce-placeholder', '', '', '2020-11-10 03:44:54', '2020-11-10 03:44:54', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/woocommerce-placeholder.png', 0, 'attachment', 'image/png', 0),
(10, 1, '2020-11-10 03:44:56', '2020-11-10 03:44:56', '', 'Shop', '', 'publish', 'closed', 'closed', '', 'shop', '', '', '2020-11-10 03:44:56', '2020-11-10 03:44:56', '', 0, 'http://localhost:8888/wordpress/shop/', 0, 'page', '', 0),
(11, 1, '2020-11-10 03:44:56', '2020-11-10 03:44:56', '<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->', 'Cart', '', 'publish', 'closed', 'closed', '', 'cart', '', '', '2020-11-10 03:44:56', '2020-11-10 03:44:56', '', 0, 'http://localhost:8888/wordpress/cart/', 0, 'page', '', 0),
(12, 1, '2020-11-10 03:44:56', '2020-11-10 03:44:56', '<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->', 'Checkout', '', 'publish', 'closed', 'closed', '', 'checkout', '', '', '2020-11-10 03:44:56', '2020-11-10 03:44:56', '', 0, 'http://localhost:8888/wordpress/checkout/', 0, 'page', '', 0),
(13, 1, '2020-11-10 03:44:56', '2020-11-10 03:44:56', '<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->', 'My account', '', 'publish', 'closed', 'closed', '', 'my-account', '', '', '2020-11-10 03:44:56', '2020-11-10 03:44:56', '', 0, 'http://localhost:8888/wordpress/my-account/', 0, 'page', '', 0),
(16, 1, '2020-11-10 09:49:09', '2020-11-10 09:49:09', '', '', '', 'trash', 'closed', 'closed', '', '__trashed', '', '', '2020-11-10 09:49:09', '2020-11-10 09:49:09', '', 0, 'http://localhost:8888/wordpress/?page_id=16', 0, 'page', '', 0),
(17, 1, '2020-11-10 04:07:04', '2020-11-10 04:07:04', '', '', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2020-11-10 04:07:04', '2020-11-10 04:07:04', '', 16, 'http://localhost:8888/wordpress/2020/11/10/16-revision-v1/', 0, 'revision', '', 0),
(18, 1, '2020-11-10 04:37:56', '2020-11-10 04:37:56', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]What are engaging futures? Engaging futures are an imagined planned narrative inclusive of interesting progressions more than just a repeat of the decades before. Engaging futures manage to evade expectations while still fitting within the framework of the preferred future.</p>\n<p>A strong vision is a must, and strong doesn\'t have to mean short and repetitive, but it has to speak to the desired end well and be memorable within the future\'s context. Following that is robust connective scenarios and logical sequence since an engaging narrative has energy and power and feels futuristic.</p>\n<p>Vision is crucial, and while it has to fit the preferred future, it should excite the audience (city/community/nation) getting them engaging with the possibilities. Substantial systemic variability is good, but with issues like sustainability, the creation of futures has opened up smart cities and technology plus other levers of positive change to solve problems and create efficiencies. We must become less reliant on preset notions of quality and must continue the discussion as a journey, rather than as a preset future.</p>\n<p>Futures for one audience should not crowd futures of another audience. The challenges should be met and clearly resolved, while the discoveries should be brilliant but not exclusive.</p>\n<p>Futures bring a suite or assortment of both resolutions and brilliant possibilities that are fulfilling but that don\'t saturate a particular topic while neglecting other priorities. This creates interest and establishes a controlled futures production but allows flexibility and resilience giving space for consistent variation and transformation.</p>\n<p>Ultimately engaging futures should make you forget that you\'re looking for the perfect future. They should unfold to you and be immersive, offering both cerebral and temporal engagement. Sure, you can engage later and analyze every point, but at that point, you won\'t need any other justification besides the fact that it\'s a great future and fulfilling a vital need.[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures offers qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1606028001586-e6d60e1ef32bb6940d8e3093b364144c-2\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1606028002481-bbdd083633335a90475e6d8ce3df5e82-10\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\" css=\".vc_custom_1605859869207{margin-top: px !important;}\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'publish', 'closed', 'closed', '', 'engaging-futures-home', '', '', '2020-11-22 17:22:33', '2020-11-22 07:22:33', '', 0, 'http://localhost:8888/wordpress/?page_id=18', 1, 'page', '', 0),
(19, 1, '2020-11-10 04:12:21', '2020-11-10 04:12:21', '', '', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 04:12:21', '2020-11-10 04:12:21', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(20, 1, '2020-11-10 04:15:45', '2020-11-10 04:15:45', '[vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row]', 'Test', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 04:15:45', '2020-11-10 04:15:45', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0),
(21, 1, '2020-11-10 04:33:08', '2020-11-10 04:33:08', '<p>[vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" css=\".vc_custom_1481235585236{margin-top: 80px !important;padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"INNOVATION\" font_container=\"tag:h2|font_size:45px|text_align:left|color:%23ffffff|line_height:50px\" use_theme_fonts=\"yes\"][vc_column_text]<span style=\"color: #ffffff; font-size: 15px; line-height: 24px;\">Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables</span>[/vc_column_text][vc_empty_space height=\"5px\"][ult_buttons btn_title=\"BUY MAPLE\" btn_link=\"url:%23||target:%20_blank|\" btn_size=\"ubtn-small\" btn_title_color=\"#ffffff\" btn_bg_color=\"\" btn_hover=\"ubtn-center-dg-bg\" btn_bg_color_hover=\"__USE_THEME_MAIN_COLOR__\" btn_title_color_hover=\"#ffffff\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_border_style=\"solid\" btn_color_border_hover=\"__USE_THEME_MAIN_COLOR__\" btn_border_size=\"2\" btn_radius=\"3\" btn_font_family=\"font_family:Raleway|font_call:Raleway|variant:800\" btn_font_style=\"font-weight:800;\" btn_font_size=\"desktop:12px;\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\n', 'Test', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 04:33:08', '2020-11-10 04:33:08', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0),
(22, 1, '2020-11-10 04:40:28', '2020-11-10 04:40:28', '', 'Test Slide Revolution Blank Template - Perhaps Build Into', '', 'draft', 'closed', 'closed', '', '', '', '', '2020-11-10 04:40:54', '2020-11-10 04:40:54', '', 0, 'http://localhost:8888/wordpress/?page_id=22', 0, 'page', '', 0),
(23, 1, '2020-11-10 04:40:54', '2020-11-10 04:40:54', '', 'Test Slide Revolution Blank Template - Perhaps Build Into', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2020-11-10 04:40:54', '2020-11-10 04:40:54', '', 22, 'http://localhost:8888/wordpress/2020/11/10/22-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(24, 1, '2020-11-10 04:42:54', '2020-11-09 18:42:54', '[vc_row][vc_column][ultimate_spacer height=\"20\" height_on_mob_landscape=\"0\" height_on_mob=\"0\"][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row video_bg=\"yes\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605957126547{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#000000\"][vc_column width=\"1/4\"][/vc_column][vc_column video_bg=\"yes\" width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'publish', 'closed', 'closed', '', 'futures-course', '', '', '2020-11-21 21:12:51', '2020-11-21 11:12:51', '', 0, 'http://localhost:8888/wordpress/?page_id=24', 0, 'page', '', 0),
(25, 1, '2020-11-10 04:45:17', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'closed', 'closed', '', '', '', '', '2020-11-10 04:45:17', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=25', 1, 'nav_menu_item', '', 0),
(27, 1, '2020-11-10 04:46:16', '2020-11-10 04:46:16', '', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-10 04:46:16', '2020-11-10 04:46:16', '', 24, 'http://localhost:8888/wordpress/2020/11/10/24-revision-v1/', 0, 'revision', '', 0),
(29, 1, '2020-11-10 04:47:45', '2020-11-09 18:47:45', '[vc_row gap=\"20\" bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][vc_empty_space][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]\r\n<h1>CREATE ENGAGING FUTURES</h1>\r\n[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]\r\n<blockquote>Through our Clients, 2050 commences today.</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2020-11-22 11:24:45', '2020-11-22 01:24:45', '', 0, 'http://localhost:8888/wordpress/?page_id=29', 4, 'page', '', 0),
(31, 1, '2020-11-10 04:47:45', '2020-11-10 04:47:45', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-10 04:47:45', '2020-11-10 04:47:45', '', 29, 'http://localhost:8888/wordpress/2020/11/10/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(33, 1, '2020-11-10 05:41:36', '2020-11-10 05:41:36', '[vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\n<h4>Our Vision</h4>\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]\n<h4>Our Mission</h4>\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" css=\".vc_custom_1481235585236{margin-top: 80px !important;padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"INNOVATION\" font_container=\"tag:h2|font_size:45px|text_align:left|color:%23ffffff|line_height:50px\" use_theme_fonts=\"yes\"][vc_column_text]<span style=\"color: #ffffff; font-size: 15px; line-height: 24px;\">Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables</span>[/vc_column_text][vc_empty_space height=\"5px\"][ult_buttons btn_title=\"BUY MAPLE\" btn_link=\"url:%23||target:%20_blank|\" btn_size=\"ubtn-small\" btn_title_color=\"#ffffff\" btn_bg_color=\"\" btn_hover=\"ubtn-center-dg-bg\" btn_bg_color_hover=\"__USE_THEME_MAIN_COLOR__\" btn_title_color_hover=\"#ffffff\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_border_style=\"solid\" btn_color_border_hover=\"__USE_THEME_MAIN_COLOR__\" btn_border_size=\"2\" btn_radius=\"3\" btn_font_family=\"font_family:Raleway|font_call:Raleway|variant:800\" btn_font_style=\"font-weight:800;\" btn_font_size=\"desktop:12px;\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\n\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.\n\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.\n\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 05:41:36', '2020-11-10 05:41:36', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0),
(34, 1, '2020-11-10 05:48:22', '2020-11-10 05:48:22', '{\n    \"maple-child::nav_menu_locations[PrimaryNavigation]\": {\n        \"value\": -1099025504501106700,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 05:48:00\"\n    },\n    \"maple-child::nav_menu_locations[topbarnav]\": {\n        \"value\": -1099025504501106700,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 05:48:00\"\n    },\n    \"nav_menu[-1099025504501106700]\": {\n        \"value\": {\n            \"name\": \"EF Home\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"auto_add\": true\n        },\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 05:48:00\"\n    },\n    \"nav_menu_item[-128781960343152640]\": {\n        \"value\": {\n            \"object_id\": 0,\n            \"object\": \"\",\n            \"menu_item_parent\": 0,\n            \"position\": 1,\n            \"type\": \"custom\",\n            \"title\": \"Home\",\n            \"url\": \"http://localhost:8888/wordpress\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Home\",\n            \"nav_menu_term_id\": -1099025504501106700,\n            \"_invalid\": false,\n            \"type_label\": \"Custom Link\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 05:48:00\"\n    },\n    \"nav_menu_item[-7317697925088827000]\": {\n        \"value\": {\n            \"object_id\": 24,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 2,\n            \"type\": \"post_type\",\n            \"title\": \"Futures Transformation Course\",\n            \"url\": \"http://localhost:8888/wordpress/futures-transformation-course/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Futures Transformation Course\",\n            \"nav_menu_term_id\": -1099025504501106700,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 05:48:22\"\n    },\n    \"nav_menu_item[-4118760365049444400]\": {\n        \"value\": {\n            \"object_id\": 29,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 3,\n            \"type\": \"post_type\",\n            \"title\": \"Contact Us\",\n            \"url\": \"http://localhost:8888/wordpress/contact-us/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Contact Us\",\n            \"nav_menu_term_id\": -1099025504501106700,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 05:48:22\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '42bbeb41-aea5-4703-9015-5246ad66c908', '', '', '2020-11-10 05:48:22', '2020-11-10 05:48:22', '', 0, 'http://localhost:8888/wordpress/?p=34', 0, 'customize_changeset', '', 0),
(38, 1, '2020-11-10 05:51:08', '2020-11-10 05:51:08', '{\n    \"show_on_front\": {\n        \"value\": \"page\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 05:51:08\"\n    },\n    \"page_on_front\": {\n        \"value\": \"18\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 05:51:08\"\n    },\n    \"page_for_posts\": {\n        \"value\": \"2\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 05:51:08\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'e98863e5-3d43-45b0-b194-d88e35001f16', '', '', '2020-11-10 05:51:08', '2020-11-10 05:51:08', '', 0, 'http://localhost:8888/wordpress/2020/11/10/e98863e5-3d43-45b0-b194-d88e35001f16/', 0, 'customize_changeset', '', 0),
(39, 1, '2020-11-10 05:52:38', '2020-11-10 05:52:38', '{\n    \"page_for_posts\": {\n        \"value\": \"2\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 05:51:29\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'c4791b48-e8e7-4b94-9a78-d994355ac50f', '', '', '2020-11-10 05:52:38', '2020-11-10 05:52:38', '', 0, 'http://localhost:8888/wordpress/?p=39', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(40, 1, '2020-11-10 06:00:35', '2020-11-10 06:00:35', '<p>[vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 06:00:35', '2020-11-10 06:00:35', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0),
(42, 1, '2020-11-10 06:13:54', '2020-11-10 06:13:54', '', 'Sydney photo by Colin Russo', '', 'inherit', 'open', 'closed', '', 'sydney-photo-by-colin-russo', '', '', '2020-11-10 06:13:54', '2020-11-10 06:13:54', '', 18, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-photo-by-Colin-Russo.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(43, 1, '2020-11-10 06:14:19', '2020-11-10 06:14:19', '[vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Our Vision</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]\r\n<h4>Our Mission</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 06:14:19', '2020-11-10 06:14:19', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(44, 1, '2020-11-10 06:28:35', '2020-11-10 06:28:35', '<p>[vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1481568704718{margin-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"CLEAN MULTI CONCEPT WP THEME\" spacer=\"line_with_icon\" spacer_position=\"middle\" line_height=\"1\" line_color=\"__USE_THEME_MAIN_COLOR__\" icon=\"linearicons-spades\" icon_size=\"32\" line_width=\"100\" spacer_margin=\"margin-top:20px;margin-bottom:20px;\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:20px;mobile:16px;\" sub_heading_font_size=\"desktop:18px;mobile:12px;\"]A Beautiful modern design, with a powerful framework behind![/ultimate_heading][vc_single_image image=\"9679\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 06:28:35', '2020-11-10 06:28:35', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0),
(45, 1, '2020-11-10 06:39:43', '2020-11-10 06:39:43', '', 'Sydney Photo by Engaging Futures', '', 'inherit', 'open', 'closed', '', 'sydney-photo-by-engaging-futures', '', '', '2020-11-10 06:39:43', '2020-11-10 06:39:43', '', 18, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Photo-by-Engaging-Futures.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(46, 1, '2020-11-10 06:40:41', '2020-11-10 06:40:41', '[vc_row full_width=\"stretch_row_content_no_spaces\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1481568704718{margin-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"CLEAN MULTI CONCEPT WP THEME\" spacer=\"line_with_icon\" spacer_position=\"middle\" line_height=\"1\" line_color=\"__USE_THEME_MAIN_COLOR__\" icon=\"linearicons-spades\" icon_size=\"32\" line_width=\"100\" spacer_margin=\"margin-top:20px;margin-bottom:20px;\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:20px;mobile:16px;\" sub_heading_font_size=\"desktop:18px;mobile:12px;\"]A Beautiful modern design, with a powerful framework behind![/ultimate_heading][vc_single_image image=\"45\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Our Vision</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]\r\n<h4>Our Mission</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 06:40:41', '2020-11-10 06:40:41', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(47, 1, '2020-11-10 07:13:41', '2020-11-10 07:13:41', '[vc_row full_width=\"stretch_row_content_no_spaces\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1481568704718{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"45\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Our Vision</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]\r\n<h4>Our Mission</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 07:13:41', '2020-11-10 07:13:41', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0),
(48, 1, '2020-11-10 07:20:55', '2020-11-10 07:20:55', '', 'Sydney Harbour by Engaging Futures', '', 'inherit', 'open', 'closed', '', 'sydney-harbour-by-engaging-futures', '', '', '2020-11-10 07:20:55', '2020-11-10 07:20:55', '', 18, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(49, 1, '2020-11-10 07:23:45', '2020-11-10 07:23:45', '<p>[vc_row full_width=\"stretch_row_content_no_spaces\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1481568704718{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 07:23:45', '2020-11-10 07:23:45', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(50, 1, '2020-11-10 07:24:54', '2020-11-10 07:24:54', '[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Our Vision</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]\r\n<h4>Our Mission</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 07:24:54', '2020-11-10 07:24:54', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(53, 1, '2020-11-10 08:20:36', '2020-11-10 08:20:36', '[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Our Vision</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]\r\n<h4>Our Mission</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Engaging Futures: Engaging tomorrow today | Facilitators of aspirational visions', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 08:20:36', '2020-11-10 08:20:36', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(54, 1, '2020-11-10 08:40:19', '2020-11-10 08:40:19', '[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Our Vision</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]\r\n<h4>Our Mission</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 08:40:19', '2020-11-10 08:40:19', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(56, 1, '2020-11-10 09:21:50', '2020-11-10 09:21:50', '<p>[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\n', 'Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 09:21:50', '2020-11-10 09:21:50', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(57, 1, '2020-11-10 09:26:03', '2020-11-10 09:26:03', '[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Our Vision</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]\r\n<h4>Our Mission</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 09:26:03', '2020-11-10 09:26:03', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0),
(59, 1, '2020-11-10 09:48:15', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2020-11-10 09:48:15', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=59', 1, 'nav_menu_item', '', 0),
(60, 1, '2020-11-10 09:55:37', '2020-11-10 09:55:37', '{\n    \"blogname\": {\n        \"value\": \"Engaging Futures \",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 09:54:11\"\n    },\n    \"blogdescription\": {\n        \"value\": \"Facilitators of aspirational visions and strategies\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 09:54:11\"\n    },\n    \"site_icon\": {\n        \"value\": 62,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-10 09:55:37\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '2741898a-f052-4907-bf44-7978b1bfb734', '', '', '2020-11-10 09:55:37', '2020-11-10 09:55:37', '', 0, 'http://localhost:8888/wordpress/?p=60', 0, 'customize_changeset', '', 0),
(61, 1, '2020-11-10 09:54:52', '2020-11-10 09:54:52', '', 'logo_edited_edited', '', 'inherit', 'open', 'closed', '', 'logo_edited_edited', '', '', '2020-11-10 09:54:52', '2020-11-10 09:54:52', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/logo_edited_edited.png', 0, 'attachment', 'image/png', 0),
(62, 1, '2020-11-10 09:55:24', '2020-11-10 09:55:24', 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/cropped-logo_edited_edited.png', 'cropped-logo_edited_edited.png', '', 'inherit', 'open', 'closed', '', 'cropped-logo_edited_edited-png', '', '', '2020-11-10 09:55:24', '2020-11-10 09:55:24', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/cropped-logo_edited_edited.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(63, 1, '2020-11-10 20:11:51', '2020-11-10 10:11:51', '<p>[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_empty_space height=\"60px\"][ultimate_heading alignment=\"left\" spacer=\"icon_only\" icon=\"linearicons-road-sign\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 20:11:51', '2020-11-10 10:11:51', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0),
(64, 1, '2020-11-10 20:33:52', '2020-11-10 10:33:52', '', 'logo_edited (1)', '', 'inherit', 'open', 'closed', '', 'logo_edited-1', '', '', '2020-11-10 20:33:52', '2020-11-10 10:33:52', '', 18, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/logo_edited-1.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(65, 1, '2020-11-10 21:03:38', '2020-11-10 11:03:38', '<p>[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help them to explore essential and sustainable futures, and to discover changes occurring in all of our systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the stories of ourselves and others that integrate through negotiation and optimisation to generate better futures for all. We create the preferred and alternative futures that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside great leaders from organisations such as the United Nations, Australian and overseas universities, government and corporate organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready \" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 21:03:38', '2020-11-10 11:03:38', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(66, 1, '2020-11-10 21:10:21', '2020-11-10 11:10:21', '<p>[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help them to explore essential and sustainable futures, and to discover changes occurring in all of our systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the stories of ourselves and others that integrate through negotiation and optimisation to generate better futures for all. We create the preferred and alternative futures that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside great leaders from organisations such as the United Nations, Australian and overseas universities, government and corporate organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready \" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 21:10:21', '2020-11-10 11:10:21', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(67, 1, '2020-11-10 21:24:17', '2020-11-10 11:24:17', '<p>[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 21:24:17', '2020-11-10 11:24:17', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(68, 1, '2020-11-10 21:32:15', '2020-11-10 11:32:15', '<p>[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 21:32:15', '2020-11-10 11:32:15', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(69, 1, '2020-11-10 21:34:08', '2020-11-10 11:34:08', '<p>[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 21:34:08', '2020-11-10 11:34:08', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(70, 1, '2020-11-10 21:34:52', '2020-11-10 11:34:52', '<p>[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Our Amazing Work\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Tons of pre-build Portfolios with CubePortfolio plugin\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"38\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-diamond4\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 21:34:52', '2020-11-10 11:34:52', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0),
(71, 1, '2020-11-10 21:43:58', '2020-11-10 11:43:58', '', 'Course Registration and Payments', '', 'publish', 'closed', 'closed', '', 'course-registration-and-payments', '', '', '2020-11-10 21:43:58', '2020-11-10 11:43:58', '', 24, 'http://localhost:8888/wordpress/?page_id=71', 0, 'page', '', 0),
(72, 1, '2020-11-10 21:43:50', '2020-11-10 11:43:50', '', 'Course Registration and Payments', '', 'inherit', 'closed', 'closed', '', '71-revision-v1', '', '', '2020-11-10 21:43:50', '2020-11-10 11:43:50', '', 71, 'http://localhost:8888/wordpress/2020/11/10/71-revision-v1/', 0, 'revision', '', 0),
(73, 1, '2020-11-10 22:47:44', '2020-11-10 12:47:44', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9293|url^http://treekode.com/maple/wp-content/uploads/2016/08/71.jpg|caption^null|alt^null|title^71|description^null\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1481584236969{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#f2f2f2\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSES<br />\nSINGLE DAY FUTURES WORKSHOPS<br />\nCONFERENCE PRESENTATIONS<br />\nSTRATEGY AND REPORT AUTHORS<br />\nORGANISATIONAL CONSULTANTS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p>We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"771\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-10 22:47:44', '2020-11-10 12:47:44', '', 29, 'http://localhost:8888/wordpress/2020/11/10/29-revision-v1/', 0, 'revision', '', 0),
(76, 1, '2020-11-10 23:10:09', '2020-11-10 13:10:09', '', 'linearicons', '', 'inherit', 'open', 'closed', '', 'linearicons', '', '', '2020-11-10 23:10:09', '2020-11-10 13:10:09', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/linearicons.zip', 0, 'attachment', 'application/zip', 0),
(77, 1, '2020-11-10 23:10:37', '2020-11-10 13:10:37', '', 'Ultimate-set', '', 'inherit', 'open', 'closed', '', 'ultimate-set', '', '', '2020-11-10 23:10:37', '2020-11-10 13:10:37', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Ultimate-set.zip', 0, 'attachment', 'application/zip', 0),
(78, 1, '2020-11-10 23:11:11', '2020-11-10 13:11:11', '', 'WebHostingHub-Glyphs', '', 'inherit', 'open', 'closed', '', 'webhostinghub-glyphs', '', '', '2020-11-10 23:11:11', '2020-11-10 13:11:11', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/WebHostingHub-Glyphs.zip', 0, 'attachment', 'application/zip', 0),
(79, 1, '2020-11-10 23:13:39', '2020-11-10 13:13:39', '', 'paintbrush', '', 'inherit', 'open', 'closed', '', 'paintbrush', '', '', '2020-11-10 23:13:39', '2020-11-10 13:13:39', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/paintbrush.png', 0, 'attachment', 'image/png', 0),
(80, 1, '2020-11-10 23:14:18', '2020-11-10 13:14:18', '', 'Mockup', '', 'inherit', 'open', 'closed', '', 'mockup', '', '', '2020-11-10 23:14:18', '2020-11-10 13:14:18', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mockup.zip', 0, 'attachment', 'application/zip', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(81, 1, '2020-11-10 23:51:27', '2020-11-10 13:51:27', '<p>[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.</p>\n<p>Globally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-10 23:51:27', '2020-11-10 13:51:27', '', 18, 'http://localhost:8888/wordpress/2020/11/10/18-revision-v1/', 0, 'revision', '', 0),
(82, 1, '2020-11-10 23:56:14', '2020-11-10 23:56:14', '', '101.jpg', '', 'inherit', 'closed', 'closed', '', '101-jpg', '', '', '2020-11-10 23:56:14', '2020-11-10 23:56:14', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/101.jpg', 0, 'attachment', 'image/jpeg', 0),
(83, 1, '2020-11-10 23:56:14', '2020-11-10 23:56:14', '', '01596free.jpg', '', 'inherit', 'closed', 'closed', '', '01596free-jpg', '', '', '2020-11-10 23:56:14', '2020-11-10 23:56:14', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/01596free.jpg', 0, 'attachment', 'image/jpeg', 0),
(84, 1, '2020-11-10 23:56:28', '2020-11-10 23:56:28', '', '432423.jpg', '', 'inherit', 'closed', 'closed', '', '432423-jpg', '', '', '2020-11-10 23:56:28', '2020-11-10 23:56:28', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/432423.jpg', 0, 'attachment', 'image/jpeg', 0),
(85, 1, '2020-11-10 23:56:28', '2020-11-10 23:56:28', '', 'relative_pencil3.png', '', 'inherit', 'closed', 'closed', '', 'relative-pencil3-png', '', '', '2020-11-10 23:56:28', '2020-11-10 23:56:28', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/relative_pencil3.png', 0, 'attachment', 'image/png', 0),
(86, 1, '2020-11-10 23:56:28', '2020-11-10 23:56:28', '', 'guy_transparent.png', '', 'inherit', 'closed', 'closed', '', 'guy-transparent-png', '', '', '2020-11-10 23:56:28', '2020-11-10 23:56:28', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/guy_transparent.png', 0, 'attachment', 'image/png', 0),
(87, 1, '2020-11-10 23:56:28', '2020-11-10 23:56:28', '', 'relative_pencil1.png', '', 'inherit', 'closed', 'closed', '', 'relative-pencil1-png', '', '', '2020-11-10 23:56:28', '2020-11-10 23:56:28', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/relative_pencil1.png', 0, 'attachment', 'image/png', 0),
(88, 1, '2020-11-10 23:56:29', '2020-11-10 23:56:29', '', 'relative_eraser2.png', '', 'inherit', 'closed', 'closed', '', 'relative-eraser2-png', '', '', '2020-11-10 23:56:29', '2020-11-10 23:56:29', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/relative_eraser2.png', 0, 'attachment', 'image/png', 0),
(89, 1, '2020-11-10 23:56:29', '2020-11-10 23:56:29', '', 'relative_pencil2.png', '', 'inherit', 'closed', 'closed', '', 'relative-pencil2-png', '', '', '2020-11-10 23:56:29', '2020-11-10 23:56:29', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/relative_pencil2.png', 0, 'attachment', 'image/png', 0),
(90, 1, '2020-11-10 23:56:29', '2020-11-10 23:56:29', '', 'relative_triangle.png', '', 'inherit', 'closed', 'closed', '', 'relative-triangle-png', '', '', '2020-11-10 23:56:29', '2020-11-10 23:56:29', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/relative_triangle.png', 0, 'attachment', 'image/png', 0),
(91, 1, '2020-11-10 23:56:29', '2020-11-10 23:56:29', '', 'relative_glasses.png', '', 'inherit', 'closed', 'closed', '', 'relative-glasses-png', '', '', '2020-11-10 23:56:29', '2020-11-10 23:56:29', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/relative_glasses.png', 0, 'attachment', 'image/png', 0),
(92, 1, '2020-11-10 23:56:29', '2020-11-10 23:56:29', '', 'girl_transparent.png', '', 'inherit', 'closed', 'closed', '', 'girl-transparent-png', '', '', '2020-11-10 23:56:29', '2020-11-10 23:56:29', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/girl_transparent.png', 0, 'attachment', 'image/png', 0),
(93, 1, '2020-11-10 23:56:46', '2020-11-10 23:56:46', '', 'serv1.jpg', '', 'inherit', 'closed', 'closed', '', 'serv1-jpg', '', '', '2020-11-10 23:56:46', '2020-11-10 23:56:46', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/serv1.jpg', 0, 'attachment', 'image/jpeg', 0),
(94, 1, '2020-11-10 23:56:46', '2020-11-10 23:56:46', '', 'service-3.jpg', '', 'inherit', 'closed', 'closed', '', 'service-3-jpg', '', '', '2020-11-10 23:56:46', '2020-11-10 23:56:46', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/service-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(95, 1, '2020-11-10 23:56:57', '2020-11-10 23:56:57', '', 'hv41.jpg', '', 'inherit', 'closed', 'closed', '', 'hv41-jpg', '', '', '2020-11-10 23:56:57', '2020-11-10 23:56:57', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/hv41.jpg', 0, 'attachment', 'image/jpeg', 0),
(96, 1, '2020-11-10 23:56:57', '2020-11-10 23:56:57', '', '0244.jpg', '', 'inherit', 'closed', 'closed', '', '0244-jpg', '', '', '2020-11-10 23:56:57', '2020-11-10 23:56:57', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/0244.jpg', 0, 'attachment', 'image/jpeg', 0),
(97, 1, '2020-11-10 23:56:58', '2020-11-10 23:56:58', '', 'SW_CalebMorris2.jpg', '', 'inherit', 'closed', 'closed', '', 'sw-calebmorris2-jpg', '', '', '2020-11-10 23:56:58', '2020-11-10 23:56:58', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/SW_CalebMorris2.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(98, 1, '2020-11-11 00:12:02', '2020-11-10 14:12:02', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\" offset=\"\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^48|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Sydney-Harbour-by-Engaging-Futures.png|caption^null|alt^null|title^Sydney Harbour by Engaging Futures|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#f7f7f7\" css=\".vc_custom_1604993088307{margin-top: 120px !important;}\"][vc_column][vc_single_image image=\"48\" img_size=\"full\" alignment=\"center\" css_animation=\"top-to-bottom\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Our Vision</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Our Mission</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-11 00:12:02', '2020-11-10 14:12:02', '', 18, 'http://localhost:8888/wordpress/2020/11/11/18-revision-v1/', 0, 'revision', '', 0),
(99, 1, '2020-11-11 08:46:59', '2020-11-10 22:46:59', '<p>[vc_row][vc_column][rev_slider][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-11 08:46:59', '2020-11-10 22:46:59', '', 24, 'http://localhost:8888/wordpress/2020/11/11/24-revision-v1/', 0, 'revision', '', 0),
(100, 1, '2020-11-11 08:57:05', '2020-11-10 22:57:05', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v2\" alias=\"homev2\" offset=\"\"][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-11 08:57:05', '2020-11-10 22:57:05', '', 24, 'http://localhost:8888/wordpress/2020/11/11/24-revision-v1/', 0, 'revision', '', 0),
(101, 1, '2020-11-11 10:51:31', '2020-11-11 00:51:31', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"YOUVE EMBARKED ON THE JOURNEY TO \" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CREATE ENGAGING FUTURES\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: left;\"><strong>The creation of engaging futures has an aim. This is a journey of hope, discovery and of an exponentially better reality.</strong></p>\n<p style=\"text-align: left;\">You won\'t have the future you want by engaging in a linear projected reality that extends from the problems and inaction of the past.</p>\n<p style=\"text-align: left;\">You create preferred futures by engaging with your mind in desired images, texts and plans, that build your own hopes into dreams - futures that are many times better than the ones you imagine now.</p>\n<p style=\"text-align: left;\">You create engaging futures that solve today\'s problems by replacing them with a massively better proposition that carries you forward on a journey of hope.</p>\n<p style=\"text-align: left;\">With engaging futures in mind, your journey has energy for inclusivity, tolerance and openness - because your futures are exponentially more valuable and rewarding than the effort they take to create.</p>\n<p style=\"text-align: left;\">Engaging futures are effortless, favourable and truly interesting futures that return greater and greater gifts. As we embark on a journey of engaging futures, we are actually on a journey of futures discovery. We learn, and discover benefits with each new action achieved. Each gift refreshes our hopes in our vision and expands our preferred future possibilities, creating fulfilment, purpose and self-evolutionary visioning.</p>\n<p style=\"text-align: left;\">Futures thinking creates an expansive and improving universe that continues the promise to this and to future generations of sustainable improvement.</p>\n<p style=\"text-align: left;\">This journey suggests that humanity has periled for centuries to create societies of hunter-gatherer, farming, the industrial and information societies. We are lucky to now be experiencing the greatest globalised society in history: digital society, connected by person to person links and premium technology consumption plus smart cities\' coordinated use of the IoTs and its objects.</p>\n<p style=\"text-align: left;\">The promise to future generations is that your own futures will transform, guided by the advances that already exist and the emerging human-centred society of 2020-2030. Your own transformed futures, will be a gift to future generations.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1606025202200-405296225210e8f9fc9879d7f9b53102-10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Publications', '', 'publish', 'closed', 'closed', '', 'publications', '', '', '2020-11-22 16:16:13', '2020-11-22 06:16:13', '', 0, 'http://localhost:8888/wordpress/?page_id=101', 3, 'page', '', 0),
(103, 1, '2020-11-11 10:22:11', '2020-11-11 00:22:11', '', 'Plugin Backup - Slider Revolution - 6.2.23', '', 'inherit', 'open', 'closed', '', 'plugin-backup-slider-revolution-6-2-23', '', '', '2020-11-11 10:22:11', '2020-11-11 00:22:11', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/revslider-6.2.23-zPcxlo7QMNLAb9UfZ4Z.zip', 0, 'attachment', 'application/zip', 0),
(105, 1, '2020-11-11 10:40:08', '2020-11-11 10:40:08', '', 'object_macscreen_1-2.png', '', 'inherit', 'closed', 'closed', '', 'object-macscreen-1-2-png', '', '', '2020-11-11 10:40:08', '2020-11-11 10:40:08', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/object_macscreen_1-2.png', 0, 'attachment', 'image/png', 0),
(106, 1, '2020-11-11 10:40:09', '2020-11-11 10:40:09', '', 'object_plant_1.png', '', 'inherit', 'closed', 'closed', '', 'object-plant-1-png', '', '', '2020-11-11 10:40:09', '2020-11-11 10:40:09', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/object_plant_1.png', 0, 'attachment', 'image/png', 0),
(107, 1, '2020-11-11 10:40:09', '2020-11-11 10:40:09', '', 'keyboard_apple.png', '', 'inherit', 'closed', 'closed', '', 'keyboard-apple-png', '', '', '2020-11-11 10:40:09', '2020-11-11 10:40:09', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/keyboard_apple.png', 0, 'attachment', 'image/png', 0),
(108, 1, '2020-11-11 10:40:09', '2020-11-11 10:40:09', '', 'object_macmouse_1.png', '', 'inherit', 'closed', 'closed', '', 'object-macmouse-1-png', '', '', '2020-11-11 10:40:09', '2020-11-11 10:40:09', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/object_macmouse_1.png', 0, 'attachment', 'image/png', 0),
(109, 1, '2020-11-11 10:40:09', '2020-11-11 10:40:09', '', 'object_glasses_2.png', '', 'inherit', 'closed', 'closed', '', 'object-glasses-2-png', '', '', '2020-11-11 10:40:09', '2020-11-11 10:40:09', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/object_glasses_2.png', 0, 'attachment', 'image/png', 0),
(110, 1, '2020-11-11 10:40:09', '2020-11-11 10:40:09', '', 'object_macscreen_2.png', '', 'inherit', 'closed', 'closed', '', 'object-macscreen-2-png', '', '', '2020-11-11 10:40:09', '2020-11-11 10:40:09', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/object_macscreen_2.png', 0, 'attachment', 'image/png', 0),
(111, 1, '2020-11-11 10:40:10', '2020-11-11 10:40:10', '', 'object_coffee_1.png', '', 'inherit', 'closed', 'closed', '', 'object-coffee-1-png', '', '', '2020-11-11 10:40:10', '2020-11-11 10:40:10', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/object_coffee_1.png', 0, 'attachment', 'image/png', 0),
(112, 1, '2020-11-11 10:40:10', '2020-11-11 10:40:10', '', 'night.jpg', '', 'inherit', 'closed', 'closed', '', 'night-jpg', '', '', '2020-11-11 10:40:10', '2020-11-11 10:40:10', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/night.jpg', 0, 'attachment', 'image/jpeg', 0),
(113, 1, '2020-11-11 10:40:11', '2020-11-11 10:40:11', '', 'tp_vid_clouds-1.jpg', '', 'inherit', 'closed', 'closed', '', 'tp-vid-clouds-1-jpg', '', '', '2020-11-11 10:40:11', '2020-11-11 10:40:11', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/tp_vid_clouds-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(114, 1, '2020-11-11 10:40:11', '2020-11-11 10:40:11', '', 'tp_vid_clouds-2.mp4', '', 'inherit', 'closed', 'closed', '', 'tp-vid-clouds-2-mp4', '', '', '2020-11-11 10:40:11', '2020-11-11 10:40:11', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/tp_vid_clouds-2.mp4', 0, 'attachment', '', 0),
(115, 1, '2020-11-11 10:40:11', '2020-11-11 10:40:11', '', 'day.jpg', '', 'inherit', 'closed', 'closed', '', 'day-jpg', '', '', '2020-11-11 10:40:11', '2020-11-11 10:40:11', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/beforeafterslider/day.jpg', 0, 'attachment', 'image/jpeg', 0),
(116, 1, '2020-11-11 10:40:11', '2020-11-11 10:40:11', '', 'before1-1.jpg', '', 'inherit', 'closed', 'closed', '', 'before1-1-jpg', '', '', '2020-11-11 10:40:11', '2020-11-11 10:40:11', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/before1-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(117, 1, '2020-11-11 10:40:12', '2020-11-11 10:40:12', '', 'after1-1.jpg', '', 'inherit', 'closed', 'closed', '', 'after1-1-jpg', '', '', '2020-11-11 10:40:12', '2020-11-11 10:40:12', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/beforeafterslider/after1-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(118, 1, '2020-11-11 10:48:34', '2020-11-11 00:48:34', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9293|url^http://treekode.com/maple/wp-content/uploads/2016/08/71.jpg|caption^null|alt^null|title^71|description^null\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1481584236969{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#f2f2f2\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSES\r\nSINGLE DAY FUTURES WORKSHOPS\r\nCONFERENCE PRESENTATIONS\r\nSTRATEGY AND REPORT AUTHORS\r\nORGANISATIONAL CONSULTANTS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\nWe offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.\r\n\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"771\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-11 10:48:34', '2020-11-11 00:48:34', '', 29, 'http://localhost:8888/wordpress/2020/11/11/29-revision-v1/', 0, 'revision', '', 0),
(121, 1, '2020-11-11 10:51:31', '2020-11-11 00:51:31', '<p>[vc_row][vc_column][rev_slider][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-11 10:51:31', '2020-11-11 00:51:31', '', 101, 'http://localhost:8888/wordpress/2020/11/11/101-revision-v1/', 0, 'revision', '', 0),
(122, 1, '2020-11-11 11:00:36', '2020-11-11 11:00:36', '', 'smoke_png4-1.png', '', 'inherit', 'closed', 'closed', '', 'smoke-png4-1-png', '', '', '2020-11-11 11:00:36', '2020-11-11 11:00:36', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/smoke_png4-1.png', 0, 'attachment', 'image/png', 0),
(123, 1, '2020-11-11 11:00:37', '2020-11-11 11:00:37', '', 'smoke_overlay.png', '', 'inherit', 'closed', 'closed', '', 'smoke-overlay-png', '', '', '2020-11-11 11:00:37', '2020-11-11 11:00:37', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/smoke_overlay.png', 0, 'attachment', 'image/png', 0),
(124, 1, '2020-11-11 12:04:35', '2020-11-11 02:04:35', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-11 12:04:35', '2020-11-11 02:04:35', '', 101, 'http://localhost:8888/wordpress/2020/11/11/101-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(125, 1, '2020-11-11 12:10:12', '2020-11-11 02:10:12', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Our Vision</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Our Mission</h4>\r\nAppropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR PORTFOLIO\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"ACCORDION\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Energistically initiate viral sources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce. Progressively incentivize cross-unit value whereas competitive applications. Progressively maintain vertical results after focused mindshare. Dynamically exploit web-enabled synergy rather than transparent portals. Credibly benchmark top-line infomediaries before exceptional processes.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Objectively administrate leveraged services\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Conveniently reinvent\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]Dramatically visualize mission-critical manufactured products rather than extensible e-commerce.\r\n\r\nGlobally cultivate tactical collaboration and idea-sharing after fully tested strategic theme areas. Enthusiastically.[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-11 12:10:12', '2020-11-11 02:10:12', '', 18, 'http://localhost:8888/wordpress/2020/11/11/18-revision-v1/', 0, 'revision', '', 0),
(126, 1, '2020-11-11 12:53:15', '2020-11-11 12:53:15', '', 'hq2.jpg', '', 'inherit', 'closed', 'closed', '', 'hq2-jpg', '', '', '2020-11-11 12:53:15', '2020-11-11 12:53:15', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/hq2.jpg', 0, 'attachment', 'image/jpeg', 0),
(127, 1, '2020-11-11 12:53:16', '2020-11-11 12:53:16', '', 'project1.jpg', '', 'inherit', 'closed', 'closed', '', 'project1-jpg', '', '', '2020-11-11 12:53:16', '2020-11-11 12:53:16', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/project1.jpg', 0, 'attachment', 'image/jpeg', 0),
(128, 1, '2020-11-11 12:53:16', '2020-11-11 12:53:16', '', 'hq1.jpg', '', 'inherit', 'closed', 'closed', '', 'hq1-jpg', '', '', '2020-11-11 12:53:16', '2020-11-11 12:53:16', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/hq1.jpg', 0, 'attachment', 'image/jpeg', 0),
(129, 1, '2020-11-11 12:53:16', '2020-11-11 12:53:16', '', 'project2.jpg', '', 'inherit', 'closed', 'closed', '', 'project2-jpg', '', '', '2020-11-11 12:53:16', '2020-11-11 12:53:16', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/project2.jpg', 0, 'attachment', 'image/jpeg', 0),
(130, 1, '2020-11-11 12:53:16', '2020-11-11 12:53:16', '', 'hq4.jpg', '', 'inherit', 'closed', 'closed', '', 'hq4-jpg', '', '', '2020-11-11 12:53:16', '2020-11-11 12:53:16', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/hq4.jpg', 0, 'attachment', 'image/jpeg', 0),
(131, 1, '2020-11-11 12:53:17', '2020-11-11 12:53:17', '', 'project3.jpg', '', 'inherit', 'closed', 'closed', '', 'project3-jpg', '', '', '2020-11-11 12:53:17', '2020-11-11 12:53:17', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/project3.jpg', 0, 'attachment', 'image/jpeg', 0),
(132, 1, '2020-11-11 12:53:17', '2020-11-11 12:53:17', '', 'Asteroids.jpg', '', 'inherit', 'closed', 'closed', '', 'asteroids-jpg', '', '', '2020-11-11 12:53:17', '2020-11-11 12:53:17', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/Asteroids.jpg', 0, 'attachment', 'image/jpeg', 0),
(133, 1, '2020-11-11 12:53:17', '2020-11-11 12:53:17', '', 'project4.jpg', '', 'inherit', 'closed', 'closed', '', 'project4-jpg', '', '', '2020-11-11 12:53:17', '2020-11-11 12:53:17', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/project4.jpg', 0, 'attachment', 'image/jpeg', 0),
(134, 1, '2020-11-11 12:53:19', '2020-11-11 12:53:19', '', 'hq5.jpg', '', 'inherit', 'closed', 'closed', '', 'hq5-jpg', '', '', '2020-11-11 12:53:19', '2020-11-11 12:53:19', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/hq5.jpg', 0, 'attachment', 'image/jpeg', 0),
(135, 1, '2020-11-11 12:53:19', '2020-11-11 12:53:19', '', 'project5.jpg', '', 'inherit', 'closed', 'closed', '', 'project5-jpg', '', '', '2020-11-11 12:53:19', '2020-11-11 12:53:19', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/project5.jpg', 0, 'attachment', 'image/jpeg', 0),
(136, 1, '2020-11-11 12:53:19', '2020-11-11 12:53:19', '', 'hq6.jpg', '', 'inherit', 'closed', 'closed', '', 'hq6-jpg', '', '', '2020-11-11 12:53:19', '2020-11-11 12:53:19', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/hq6.jpg', 0, 'attachment', 'image/jpeg', 0),
(137, 1, '2020-11-11 12:53:20', '2020-11-11 12:53:20', '', 'project6.jpg', '', 'inherit', 'closed', 'closed', '', 'project6-jpg', '', '', '2020-11-11 12:53:20', '2020-11-11 12:53:20', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/project6.jpg', 0, 'attachment', 'image/jpeg', 0),
(138, 1, '2020-11-11 12:53:20', '2020-11-11 12:53:20', '', 'hq3.jpg', '', 'inherit', 'closed', 'closed', '', 'hq3-jpg', '', '', '2020-11-11 12:53:20', '2020-11-11 12:53:20', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/hq3.jpg', 0, 'attachment', 'image/jpeg', 0),
(139, 1, '2020-11-11 12:53:20', '2020-11-11 12:53:20', '', 'project7.jpg', '', 'inherit', 'closed', 'closed', '', 'project7-jpg', '', '', '2020-11-11 12:53:20', '2020-11-11 12:53:20', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/project-carousel/project7.jpg', 0, 'attachment', 'image/jpeg', 0),
(140, 1, '2020-11-11 13:49:35', '2020-11-11 13:49:35', '', 'before-bg.jpg', '', 'inherit', 'closed', 'closed', '', 'before-bg-jpg', '', '', '2020-11-11 13:49:35', '2020-11-11 13:49:35', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/Classic-Cars-Evolution/before-bg.jpg', 0, 'attachment', 'image/jpeg', 0),
(141, 1, '2020-11-11 13:49:35', '2020-11-11 13:49:35', '', 'beforeafter-thumb.jpg', '', 'inherit', 'closed', 'closed', '', 'beforeafter-thumb-jpg', '', '', '2020-11-11 13:49:35', '2020-11-11 13:49:35', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/Classic-Cars-Evolution/beforeafter-thumb.jpg', 0, 'attachment', 'image/jpeg', 0),
(142, 1, '2020-11-11 13:49:35', '2020-11-11 13:49:35', '', 'before-car.png', '', 'inherit', 'closed', 'closed', '', 'before-car-png', '', '', '2020-11-11 13:49:35', '2020-11-11 13:49:35', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/Classic-Cars-Evolution/before-car.png', 0, 'attachment', 'image/png', 0),
(143, 1, '2020-11-11 13:49:35', '2020-11-11 13:49:35', '', 'after-car.png', '', 'inherit', 'closed', 'closed', '', 'after-car-png', '', '', '2020-11-11 13:49:35', '2020-11-11 13:49:35', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/Classic-Cars-Evolution/after-car.png', 0, 'attachment', 'image/png', 0),
(144, 1, '2020-11-11 13:49:35', '2020-11-11 13:49:35', '', 'after-bg.jpg', '', 'inherit', 'closed', 'closed', '', 'after-bg-jpg', '', '', '2020-11-11 13:49:35', '2020-11-11 13:49:35', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/Classic-Cars-Evolution/after-bg.jpg', 0, 'attachment', 'image/jpeg', 0),
(145, 1, '2020-11-11 14:00:34', '2020-11-11 14:00:34', '', 'woman2.jpg', '', 'inherit', 'closed', 'closed', '', 'woman2-jpg', '', '', '2020-11-11 14:00:34', '2020-11-11 14:00:34', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/woman2.jpg', 0, 'attachment', 'image/jpeg', 0),
(146, 1, '2020-11-11 14:00:34', '2020-11-11 14:00:34', '', 'deskbg.jpg', '', 'inherit', 'closed', 'closed', '', 'deskbg-jpg', '', '', '2020-11-11 14:00:34', '2020-11-11 14:00:34', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/deskbg.jpg', 0, 'attachment', 'image/jpeg', 0),
(147, 1, '2020-11-11 14:00:35', '2020-11-11 14:00:35', '', 'reachout_bg.jpg', '', 'inherit', 'closed', 'closed', '', 'reachout-bg-jpg', '', '', '2020-11-11 14:00:35', '2020-11-11 14:00:35', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/reachout_bg.jpg', 0, 'attachment', 'image/jpeg', 0),
(148, 1, '2020-11-11 14:21:43', '2020-11-11 04:21:43', '', 'stickies-2852375__480', '', 'inherit', 'open', 'closed', '', 'stickies-2852375__480', '', '', '2020-11-11 14:21:43', '2020-11-11 04:21:43', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/stickies-2852375__480.jpg', 0, 'attachment', 'image/jpeg', 0),
(149, 1, '2020-11-11 15:40:28', '2020-11-11 05:40:28', '', 'Picture1', '', 'inherit', 'open', 'closed', '', 'picture1', '', '', '2020-11-11 15:40:28', '2020-11-11 05:40:28', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Picture1.png', 0, 'attachment', 'image/png', 0),
(150, 1, '2020-11-11 15:40:32', '2020-11-11 05:40:32', '', 'Picture2', '', 'inherit', 'open', 'closed', '', 'picture2', '', '', '2020-11-11 15:40:32', '2020-11-11 05:40:32', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Picture2.png', 0, 'attachment', 'image/png', 0),
(151, 1, '2020-11-11 17:43:56', '2020-11-11 17:43:56', '', 'news1-1.jpg', '', 'inherit', 'closed', 'closed', '', 'news1-1-jpg', '', '', '2020-11-11 17:43:56', '2020-11-11 17:43:56', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/news1-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(152, 1, '2020-11-11 17:43:57', '2020-11-11 17:43:57', '', 'news2-1.jpg', '', 'inherit', 'closed', 'closed', '', 'news2-1-jpg', '', '', '2020-11-11 17:43:57', '2020-11-11 17:43:57', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/news2-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(153, 1, '2020-11-11 17:43:58', '2020-11-11 17:43:58', '', 'news3-2.jpg', '', 'inherit', 'closed', 'closed', '', 'news3-2-jpg', '', '', '2020-11-11 17:43:58', '2020-11-11 17:43:58', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/news3-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(154, 1, '2020-11-11 17:43:59', '2020-11-11 17:43:59', '', 'youtubecover-1.jpg', '', 'inherit', 'closed', 'closed', '', 'youtubecover-1-jpg', '', '', '2020-11-11 17:43:59', '2020-11-11 17:43:59', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/youtubecover-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(155, 1, '2020-11-11 17:47:04', '2020-11-11 07:47:04', '', 'pexels-photo-1722072', '', 'inherit', 'open', 'closed', '', 'pexels-photo-1722072', '', '', '2020-11-11 17:47:04', '2020-11-11 07:47:04', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/pexels-photo-1722072.jpeg', 0, 'attachment', 'image/jpeg', 0),
(156, 1, '2020-11-11 18:01:35', '2020-11-11 08:01:35', '', 'pexels-photo-4856376', '', 'inherit', 'open', 'closed', '', 'pexels-photo-4856376', '', '', '2020-11-11 18:01:35', '2020-11-11 08:01:35', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/pexels-photo-4856376.jpeg', 0, 'attachment', 'image/jpeg', 0),
(157, 1, '2020-11-11 18:02:51', '2020-11-11 08:02:51', '', 'concept-4455115__480', '', 'inherit', 'open', 'closed', '', 'concept-4455115__480', '', '', '2020-11-11 18:02:51', '2020-11-11 08:02:51', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/concept-4455115__480.jpg', 0, 'attachment', 'image/jpeg', 0),
(158, 1, '2020-11-11 18:06:56', '2020-11-11 08:06:56', '', 'smart-4168483__480', '', 'inherit', 'open', 'closed', '', 'smart-4168483__480', '', '', '2020-11-11 18:06:56', '2020-11-11 08:06:56', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/smart-4168483__480.jpg', 0, 'attachment', 'image/jpeg', 0),
(159, 1, '2020-11-11 18:22:13', '2020-11-11 08:22:13', '', 'virus-5675422__480', '', 'inherit', 'open', 'closed', '', 'virus-5675422__480', '', '', '2020-11-11 18:22:13', '2020-11-11 08:22:13', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/virus-5675422__480.jpg', 0, 'attachment', 'image/jpeg', 0),
(160, 1, '2020-11-11 19:11:28', '2020-11-11 09:11:28', '', 'beach-5377244__480', '', 'inherit', 'open', 'closed', '', 'beach-5377244__480', '', '', '2020-11-11 19:11:28', '2020-11-11 09:11:28', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/beach-5377244__480.jpg', 0, 'attachment', 'image/jpeg', 0),
(162, 1, '2020-11-12 10:08:37', '2020-11-12 00:08:37', '', 'education-4317851_1280', '', 'inherit', 'open', 'closed', '', 'education-4317851_1280-2', '', '', '2020-11-12 10:08:37', '2020-11-12 00:08:37', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/education-4317851_1280-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(163, 1, '2020-11-12 10:24:05', '2020-11-12 00:24:05', '', '20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514', '', 'inherit', 'open', 'closed', '', '20180219_aerials-health-and-knowledge-precinct-07-medium-e1536626128635-1024x514', '', '', '2020-11-12 10:24:05', '2020-11-12 00:24:05', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(164, 1, '2020-11-12 19:24:14', '2020-11-12 09:24:14', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 19:24:14', '2020-11-12 09:24:14', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(165, 1, '2020-11-12 19:26:52', '2020-11-12 09:26:52', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9293|url^http://treekode.com/maple/wp-content/uploads/2016/08/71.jpg|caption^null|alt^null|title^71|description^null\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1481584236969{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#f2f2f2\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSES<br />\nSINGLE DAY FUTURES WORKSHOPS<br />\nCONFERENCE PRESENTATIONS<br />\nSTRATEGY AND REPORT AUTHORS<br />\nORGANISATIONAL CONSULTANTS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p>We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-12 19:26:52', '2020-11-12 09:26:52', '', 29, 'http://localhost:8888/wordpress/2020/11/12/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(167, 1, '2020-11-12 19:30:22', '2020-11-12 09:30:22', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9293|url^http://treekode.com/maple/wp-content/uploads/2016/08/71.jpg|caption^null|alt^null|title^71|description^null\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1481584236969{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#f2f2f2\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS\r\nSINGLE DAY FUTURES WORKSHOPS EXPERTS\r\nCONFERENCE KEYNOTE AND PANEL PRESENTERS\r\nORGANISATIONAL VISIONING EXPERTS\r\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\nWe offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-12 19:30:22', '2020-11-12 09:30:22', '', 29, 'http://localhost:8888/wordpress/2020/11/12/29-revision-v1/', 0, 'revision', '', 0),
(168, 1, '2020-11-12 19:46:58', '2020-11-12 09:46:58', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9293|url^http://treekode.com/maple/wp-content/uploads/2016/08/71.jpg|caption^null|alt^null|title^71|description^null\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1605174413682{padding-top: 0px !important;padding-bottom: 150px !important;background-color: __USE_THEME_MAIN_COLOR__ !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#f2f2f2\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS\r\nSINGLE DAY FUTURES WORKSHOPS EXPERTS\r\nCONFERENCE KEYNOTE AND PANEL PRESENTERS\r\nORGANISATIONAL VISIONING EXPERTS\r\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\nWe offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-12 19:46:58', '2020-11-12 09:46:58', '', 29, 'http://localhost:8888/wordpress/2020/11/12/29-revision-v1/', 0, 'revision', '', 0),
(169, 1, '2020-11-12 20:25:18', '2020-11-12 10:25:18', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.<br />\n​<br />\n\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 20:25:18', '2020-11-12 10:25:18', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(170, 1, '2020-11-12 20:26:16', '2020-11-12 10:26:16', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 20:26:16', '2020-11-12 10:26:16', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(171, 1, '2020-11-12 20:38:13', '2020-11-12 10:38:13', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 20:38:13', '2020-11-12 10:38:13', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(172, 1, '2020-11-12 20:39:01', '2020-11-12 10:39:01', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 20:39:01', '2020-11-12 10:39:01', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(173, 1, '2020-11-12 20:41:01', '2020-11-12 10:41:01', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 20:41:01', '2020-11-12 10:41:01', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(174, 1, '2020-11-12 20:43:24', '2020-11-12 10:43:24', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 20:43:24', '2020-11-12 10:43:24', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(175, 1, '2020-11-12 20:44:49', '2020-11-12 10:44:49', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 20:44:49', '2020-11-12 10:44:49', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(176, 1, '2020-11-12 20:48:05', '2020-11-12 10:48:05', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map The Future\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"STRONG ADMIN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"CLEAN DESIGN\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"UNIQUE FEATURES\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"]Intrinsicly mesh top-line customer service after distributed meta-services. Uniquely whiteboard professional data before bricks-and-clicks.[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 20:48:05', '2020-11-12 10:48:05', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(177, 1, '2020-11-12 20:56:25', '2020-11-12 10:56:25', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 20:56:25', '2020-11-12 10:56:25', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(178, 1, '2020-11-12 21:00:21', '2020-11-12 11:00:21', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 21:00:21', '2020-11-12 11:00:21', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(179, 1, '2020-11-12 21:07:34', '2020-11-12 11:07:34', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#2468ef\" icon=\"linearicons-tape\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"CLEAN CODE\" block_desc_front=\"fff\" block_title_back=\"CLEAN CODE\" block_desc_back=\"Compellingly reinvent 24/365 schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-pointer-up\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"SWIPE NAV\" block_title_back=\"SWIPE NAV\" block_desc_back=\"Compellingly reinvent 24/365 schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-gift\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"PREMIUM PLUGINS\" block_title_back=\"PREMIUM PLUGINS\" block_desc_back=\"Compellingly reinvent schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-box\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"SUPER LOADED\" block_title_back=\"SUPER LOADED\" block_desc_back=\"Compellingly reinvent schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"linearicons-tape\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"CLEAN CODE\" block_title_back=\"CLEAN CODE\" block_desc_back=\"Compellingly reinvent 24/365 schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-pointer-up\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"SWIPE NAV\" block_title_back=\"SWIPE NAV\" block_desc_back=\"Compellingly reinvent 24/365 schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-gift\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"PREMIUM PLUGINS\" block_title_back=\"PREMIUM PLUGINS\" block_desc_back=\"Compellingly reinvent schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-box\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"SUPER LOADED\" block_title_back=\"SUPER LOADED\" block_desc_back=\"Compellingly reinvent schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 21:07:34', '2020-11-12 11:07:34', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(180, 1, '2020-11-12 21:09:41', '2020-11-12 11:09:41', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#2468ef\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally? \" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-pointer-up\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"SWIPE NAV\" block_title_back=\"SWIPE NAV\" block_desc_back=\"Compellingly reinvent 24/365 schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-gift\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"PREMIUM PLUGINS\" block_title_back=\"PREMIUM PLUGINS\" block_desc_back=\"Compellingly reinvent schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-box\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"SUPER LOADED\" block_title_back=\"SUPER LOADED\" block_desc_back=\"Compellingly reinvent schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"linearicons-tape\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"CLEAN CODE\" block_title_back=\"CLEAN CODE\" block_desc_back=\"Compellingly reinvent 24/365 schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-pointer-up\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"SWIPE NAV\" block_title_back=\"SWIPE NAV\" block_desc_back=\"Compellingly reinvent 24/365 schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-gift\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"PREMIUM PLUGINS\" block_title_back=\"PREMIUM PLUGINS\" block_desc_back=\"Compellingly reinvent schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"linearicons-box\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"SUPER LOADED\" block_title_back=\"SUPER LOADED\" block_desc_back=\"Compellingly reinvent schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 21:09:41', '2020-11-12 11:09:41', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(181, 1, '2020-11-12 21:28:03', '2020-11-12 11:28:03', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization? \" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" block_desc_back=\"Compellingly reinvent 24/365 schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 21:28:03', '2020-11-12 11:28:03', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(182, 1, '2020-11-12 21:30:30', '2020-11-12 11:30:30', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:​\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" block_desc_back=\"Compellingly reinvent 24/365 schemas rather than enterprise systems enthusiastically\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 21:30:30', '2020-11-12 11:30:30', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(183, 1, '2020-11-12 21:33:57', '2020-11-12 11:33:57', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 21:33:57', '2020-11-12 11:33:57', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(184, 1, '2020-11-12 21:37:38', '2020-11-12 11:37:38', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_zigzag][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 21:37:38', '2020-11-12 11:37:38', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(185, 1, '2020-11-12 21:40:32', '2020-11-12 11:40:32', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Futures Transformation Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 21:40:32', '2020-11-12 11:40:32', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(186, 1, '2020-11-12 21:45:11', '2020-11-12 11:45:11', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 21:45:11', '2020-11-12 11:45:11', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(188, 1, '2020-11-12 22:03:00', '2020-11-12 12:03:00', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9293|url^http://treekode.com/maple/wp-content/uploads/2016/08/71.jpg|caption^null|alt^null|title^71|description^null\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1481584236969{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS<br />\nSINGLE DAY FUTURES WORKSHOPS EXPERTS<br />\nCONFERENCE KEYNOTE AND PANEL PRESENTERS<br />\nORGANISATIONAL VISIONING EXPERTS<br />\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605174227840{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]</p>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p>We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" content_placement=\"middle\" css=\".vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column el_class=\"wide-testimonials-mobile\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"OUR CLIENTS LOVE US\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][testimonials testimonials_cats=\"dark-text\" number=\"6\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-12 22:03:00', '2020-11-12 12:03:00', '', 29, 'http://localhost:8888/wordpress/2020/11/12/29-revision-v1/', 0, 'revision', '', 0),
(189, 1, '2020-11-12 22:05:45', '2020-11-12 12:05:45', '<p>[vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9293|url^http://treekode.com/maple/wp-content/uploads/2016/08/71.jpg|caption^null|alt^null|title^71|description^null\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1481584236969{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS<br />\nSINGLE DAY FUTURES WORKSHOPS EXPERTS<br />\nCONFERENCE KEYNOTE AND PANEL PRESENTERS<br />\nORGANISATIONAL VISIONING EXPERTS<br />\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605174227840{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]</p>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p>We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" content_placement=\"middle\" css=\".vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column el_class=\"wide-testimonials-mobile\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-12 22:05:45', '2020-11-12 12:05:45', '', 29, 'http://localhost:8888/wordpress/2020/11/12/29-revision-v1/', 0, 'revision', '', 0),
(194, 1, '2020-11-12 22:26:11', '2020-11-12 12:26:11', '<p>[vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9293|url^http://treekode.com/maple/wp-content/uploads/2016/08/71.jpg|caption^null|alt^null|title^71|description^null\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1481584236969{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS<br />\nSINGLE DAY FUTURES WORKSHOPS EXPERTS<br />\nCONFERENCE KEYNOTE AND PANEL PRESENTERS<br />\nORGANISATIONAL VISIONING EXPERTS<br />\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]</p>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p>We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" content_placement=\"middle\" css=\".vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column el_class=\"wide-testimonials-mobile\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-12 22:26:11', '2020-11-12 12:26:11', '', 29, 'http://localhost:8888/wordpress/2020/11/12/29-revision-v1/', 0, 'revision', '', 0),
(195, 1, '2020-11-12 22:27:41', '2020-11-12 12:27:41', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"123,122\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1605184057788{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS\r\nSINGLE DAY FUTURES WORKSHOPS EXPERTS\r\nCONFERENCE KEYNOTE AND PANEL PRESENTERS\r\nORGANISATIONAL VISIONING EXPERTS\r\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\nWe offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" content_placement=\"middle\" css=\".vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column el_class=\"wide-testimonials-mobile\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-12 22:27:41', '2020-11-12 12:27:41', '', 29, 'http://localhost:8888/wordpress/2020/11/12/29-revision-v1/', 0, 'revision', '', 0),
(196, 1, '2020-11-12 22:32:15', '2020-11-12 12:32:15', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1605184254528{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS\r\nSINGLE DAY FUTURES WORKSHOPS EXPERTS\r\nCONFERENCE KEYNOTE AND PANEL PRESENTERS\r\nORGANISATIONAL VISIONING EXPERTS\r\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\nWe offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-12 22:32:15', '2020-11-12 12:32:15', '', 29, 'http://localhost:8888/wordpress/2020/11/12/29-revision-v1/', 0, 'revision', '', 0),
(197, 1, '2020-11-12 22:46:10', '2020-11-12 12:46:10', '', 'pexels-photo-2990641', '', 'inherit', 'open', 'closed', '', 'pexels-photo-2990641', '', '', '2020-11-12 22:46:10', '2020-11-12 12:46:10', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/pexels-photo-2990641.jpeg', 0, 'attachment', 'image/jpeg', 0),
(198, 1, '2020-11-12 22:47:48', '2020-11-12 12:47:48', '', 'Screen Shot 2020-11-02 at 20.01.29', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-02-at-20-01-29', '', '', '2020-11-12 22:47:48', '2020-11-12 12:47:48', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-02-at-20.01.29.png', 0, 'attachment', 'image/png', 0),
(199, 1, '2020-11-12 22:55:34', '2020-11-12 12:55:34', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 22:55:34', '2020-11-12 12:55:34', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(200, 1, '2020-11-12 22:58:56', '2020-11-12 12:58:56', '', 'sohail_edited', '', 'inherit', 'open', 'closed', '', 'sohail_edited', '', '', '2020-11-12 22:58:56', '2020-11-12 12:58:56', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg', 0, 'attachment', 'image/jpeg', 0),
(201, 1, '2020-11-12 23:07:06', '2020-11-12 13:07:06', '', '47319218_590029488118783_8234075506186649600_n', '', 'inherit', 'open', 'closed', '', '47319218_590029488118783_8234075506186649600_n', '', '', '2020-11-12 23:07:06', '2020-11-12 13:07:06', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/47319218_590029488118783_8234075506186649600_n.png', 0, 'attachment', 'image/png', 0),
(202, 1, '2020-11-12 23:07:16', '2020-11-12 13:07:16', '', '39894601_2146347495613377_8136673121156464640_n', '', 'inherit', 'open', 'closed', '', '39894601_2146347495613377_8136673121156464640_n', '', '', '2020-11-12 23:07:16', '2020-11-12 13:07:16', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/39894601_2146347495613377_8136673121156464640_n.png', 0, 'attachment', 'image/png', 0),
(203, 1, '2020-11-12 23:07:27', '2020-11-12 13:07:27', '', '39515534_307601786662565_527945518987345920_n', '', 'inherit', 'open', 'closed', '', '39515534_307601786662565_527945518987345920_n', '', '', '2020-11-12 23:07:27', '2020-11-12 13:07:27', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png', 0, 'attachment', 'image/png', 0),
(204, 1, '2020-11-12 23:07:36', '2020-11-12 13:07:36', '', '36285887_2181470388536946_659025902226636800_n', '', 'inherit', 'open', 'closed', '', '36285887_2181470388536946_659025902226636800_n', '', '', '2020-11-12 23:07:36', '2020-11-12 13:07:36', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/36285887_2181470388536946_659025902226636800_n.png', 0, 'attachment', 'image/png', 0),
(205, 1, '2020-11-12 23:07:39', '2020-11-12 13:07:39', '', '16788231_1592393807444610_822526208_n', '', 'inherit', 'open', 'closed', '', '16788231_1592393807444610_822526208_n', '', '', '2020-11-12 23:07:39', '2020-11-12 13:07:39', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/16788231_1592393807444610_822526208_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(206, 1, '2020-11-12 23:07:41', '2020-11-12 13:07:41', '', '16830605_1592394960777828_161116981_n', '', 'inherit', 'open', 'closed', '', '16830605_1592394960777828_161116981_n', '', '', '2020-11-12 23:07:41', '2020-11-12 13:07:41', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/16830605_1592394960777828_161116981_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(207, 1, '2020-11-12 23:07:43', '2020-11-12 13:07:43', '', '20604369_10155647121778420_4263630228007357246_n', '', 'inherit', 'open', 'closed', '', '20604369_10155647121778420_4263630228007357246_n', '', '', '2020-11-12 23:07:43', '2020-11-12 13:07:43', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/20604369_10155647121778420_4263630228007357246_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(208, 1, '2020-11-12 23:07:44', '2020-11-12 13:07:44', '', '37013521_2208135712537080_5021252356017225728_n', '', 'inherit', 'open', 'closed', '', '37013521_2208135712537080_5021252356017225728_n', '', '', '2020-11-12 23:07:44', '2020-11-12 13:07:44', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/37013521_2208135712537080_5021252356017225728_n.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(209, 1, '2020-11-12 23:07:48', '2020-11-12 13:07:48', '', '38854596_2179926098920639_5832582175131697152_n', '', 'inherit', 'open', 'closed', '', '38854596_2179926098920639_5832582175131697152_n', '', '', '2020-11-12 23:07:48', '2020-11-12 13:07:48', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/38854596_2179926098920639_5832582175131697152_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(210, 1, '2020-11-12 23:07:50', '2020-11-12 13:07:50', '', 'Awards from Our Bold Future City Of Gold Coast (1)', '', 'inherit', 'open', 'closed', '', 'awards-from-our-bold-future-city-of-gold-coast-1', '', '', '2020-11-12 23:07:50', '2020-11-12 13:07:50', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Awards-from-Our-Bold-Future-City-Of-Gold-Coast-1.png', 0, 'attachment', 'image/png', 0),
(211, 1, '2020-11-12 23:07:59', '2020-11-12 13:07:59', '', 'gold-coast-sept-10-breakout', '', 'inherit', 'open', 'closed', '', 'gold-coast-sept-10-breakout', '', '', '2020-11-12 23:07:59', '2020-11-12 13:07:59', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/gold-coast-sept-10-breakout.jpg', 0, 'attachment', 'image/jpeg', 0),
(212, 1, '2020-11-12 23:08:01', '2020-11-12 13:08:01', '', 'Executive Half-day Forum UCC Brisbane (1)', '', 'inherit', 'open', 'closed', '', 'executive-half-day-forum-ucc-brisbane-1', '', '', '2020-11-12 23:08:01', '2020-11-12 13:08:01', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Executive-Half-day-Forum-UCC-Brisbane-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(213, 1, '2020-11-12 23:08:02', '2020-11-12 13:08:02', '', 'Radio Interview 4EB', '', 'inherit', 'open', 'closed', '', 'radio-interview-4eb', '', '', '2020-11-12 23:08:02', '2020-11-12 13:08:02', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Radio-Interview-4EB.jpg', 0, 'attachment', 'image/jpeg', 0),
(214, 1, '2020-11-12 23:08:04', '2020-11-12 13:08:04', '', 'licensed image_surfers', '', 'inherit', 'open', 'closed', '', 'licensed-image_surfers', '', '', '2020-11-12 23:08:04', '2020-11-12 13:08:04', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/licensed-image_surfers.jpg', 0, 'attachment', 'image/jpeg', 0),
(215, 1, '2020-11-12 23:08:14', '2020-11-12 13:08:14', '', '_edited', '', 'inherit', 'open', 'closed', '', '_edited', '', '', '2020-11-12 23:08:14', '2020-11-12 13:08:14', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/edited.png', 0, 'attachment', 'image/png', 0),
(216, 1, '2020-11-12 23:08:16', '2020-11-12 13:08:16', '', '28822633_562335174124393_1616140708_o (1)', '', 'inherit', 'open', 'closed', '', '28822633_562335174124393_1616140708_o-1', '', '', '2020-11-12 23:08:16', '2020-11-12 13:08:16', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/28822633_562335174124393_1616140708_o-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(217, 1, '2020-11-12 23:08:24', '2020-11-12 13:08:24', '', 'Screen Shot 2018-07-28 at 08.02.35', '', 'inherit', 'open', 'closed', '', 'screen-shot-2018-07-28-at-08-02-35', '', '', '2020-11-12 23:08:24', '2020-11-12 13:08:24', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2018-07-28-at-08.02.35.png', 0, 'attachment', 'image/png', 0),
(218, 1, '2020-11-12 23:08:37', '2020-11-12 13:08:37', '', 'Professor Sohail Inayatullah (1)', '', 'inherit', 'open', 'closed', '', 'professor-sohail-inayatullah-1', '', '', '2020-11-12 23:08:37', '2020-11-12 13:08:37', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Professor-Sohail-Inayatullah-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(219, 1, '2020-11-12 23:08:41', '2020-11-12 13:08:41', '', 'Dr. Ivana Milojevic (1)', '', 'inherit', 'open', 'closed', '', 'dr-ivana-milojevic-1', '', '', '2020-11-12 23:08:41', '2020-11-12 13:08:41', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr.-Ivana-Milojevic-1.png', 0, 'attachment', 'image/png', 0),
(220, 1, '2020-11-12 23:08:42', '2020-11-12 13:08:42', '', 'Dr2520Colin2520Russo2520Promo_edited_edited_edited (1)', '', 'inherit', 'open', 'closed', '', 'dr2520colin2520russo2520promo_edited_edited_edited-1', '', '', '2020-11-12 23:08:42', '2020-11-12 13:08:42', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(221, 1, '2020-11-12 23:08:44', '2020-11-12 13:08:44', '', 'sohail', '', 'inherit', 'open', 'closed', '', 'sohail', '', '', '2020-11-12 23:08:44', '2020-11-12 13:08:44', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail.jpg', 0, 'attachment', 'image/jpeg', 0),
(222, 1, '2020-11-12 23:08:45', '2020-11-12 13:08:45', '', 'Edwina Marks', '', 'inherit', 'open', 'closed', '', 'edwina-marks', '', '', '2020-11-12 23:08:45', '2020-11-12 13:08:45', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks.jpeg', 0, 'attachment', 'image/jpeg', 0),
(223, 1, '2020-11-12 23:09:04', '2020-11-12 13:09:04', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605185942081{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">CEO TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-dribbble\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][single_icon icon=\"Defaults-linkedin-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-google-plus-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_animation=\"fadeInUp\"][/ultimate_icons][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605186540530{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail.jpg?id=221) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#212121\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">MARIAN GUSTO</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">DESIGNER TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-facebook-square\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][/ultimate_icons][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 23:09:04', '2020-11-12 13:09:04', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(224, 1, '2020-11-12 23:11:34', '2020-11-12 13:11:34', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605186668855{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">CEO TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-dribbble\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][single_icon icon=\"Defaults-linkedin-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-google-plus-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_animation=\"fadeInUp\"][/ultimate_icons][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605186689113{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#212121\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">MARIAN GUSTO</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">DESIGNER TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-facebook-square\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][/ultimate_icons][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 23:11:34', '2020-11-12 13:11:34', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(225, 1, '2020-11-12 23:14:03', '2020-11-12 13:14:03', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605186805389{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">CEO TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-dribbble\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][single_icon icon=\"Defaults-linkedin-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-google-plus-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_animation=\"fadeInUp\"][/ultimate_icons][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#212121\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">MARIAN GUSTO</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">DESIGNER TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-facebook-square\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][/ultimate_icons][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 23:14:03', '2020-11-12 13:14:03', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(226, 1, '2020-11-12 23:23:33', '2020-11-12 13:23:33', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605186805389{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair of Futures Studies</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][ultimate_icons][single_icon icon=\"Defaults-dribbble\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-linkedin-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-google-plus-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_animation=\"fadeInUp\"][/ultimate_icons][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">MARIAN GUSTO</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">DESIGNER TREEWORKS</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 23:23:33', '2020-11-12 13:23:33', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(227, 1, '2020-11-12 23:25:47', '2020-11-12 13:25:47', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605186805389{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair of Futures Studies</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">Managing Director, Engaging Futures</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 23:25:47', '2020-11-12 13:25:47', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(228, 1, '2020-11-12 23:31:47', '2020-11-12 13:31:47', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605186805389{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair of Futures Studies</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">Managing Director, Engaging Futures</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 23:31:47', '2020-11-12 13:31:47', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(229, 1, '2020-11-12 23:34:57', '2020-11-12 13:34:57', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605186805389{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair of Futures Studies</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">Managing Director, Engaging Futures</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 23:34:57', '2020-11-12 13:34:57', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(230, 1, '2020-11-12 23:45:47', '2020-11-12 13:45:47', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605186805389{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/sohail_edited.jpg?id=200) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair of Futures Studies</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">Managing Director, Engaging Futures</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"20px\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 23:45:47', '2020-11-12 13:45:47', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(231, 1, '2020-11-12 23:57:58', '2020-11-12 13:57:58', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605189473524{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Professor-Sohail-Inayatullah-1.jpeg?id=218) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fas fa-universal-access\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair of Futures Studies</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605186834901{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Dr252520Colin252520Russo252520Promo_edited_edited_edited-1.jpg?id=220) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fas fa-landmark\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">Managing Director, Engaging Futures</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"20px\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-12 23:57:58', '2020-11-12 13:57:58', '', 24, 'http://localhost:8888/wordpress/2020/11/12/24-revision-v1/', 0, 'revision', '', 0),
(232, 1, '2020-11-13 00:57:03', '2020-11-12 14:57:03', '', 'Screen Shot 2020-11-13 at 00.55.12', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-13-at-00-55-12', '', '', '2020-11-13 00:57:03', '2020-11-12 14:57:03', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.55.12.png', 0, 'attachment', 'image/png', 0),
(233, 1, '2020-11-13 00:57:13', '2020-11-12 14:57:13', '', 'Screen Shot 2020-11-13 at 00.54.21', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-13-at-00-54-21', '', '', '2020-11-13 00:57:13', '2020-11-12 14:57:13', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png', 0, 'attachment', 'image/png', 0),
(234, 1, '2020-11-13 00:58:01', '2020-11-12 14:58:01', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605193055646{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.55.12.png?id=232) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fas fa-universal-access\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair of Futures Studies</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605193076519{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png?id=233) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fas fa-landmark\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">Managing Director, Engaging Futures</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"20px\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 00:58:01', '2020-11-12 14:58:01', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(235, 1, '2020-11-13 01:06:17', '2020-11-12 15:06:17', '', 'Screen Shot 2020-11-13 at 01.02.56', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-13-at-01-02-56', '', '', '2020-11-13 01:06:17', '2020-11-12 15:06:17', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.02.56.png', 0, 'attachment', 'image/png', 0),
(236, 1, '2020-11-13 01:06:32', '2020-11-12 15:06:32', '', 'Screen Shot 2020-11-13 at 01.04.48', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-13-at-01-04-48', '', '', '2020-11-13 01:06:32', '2020-11-12 15:06:32', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.04.48.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(237, 1, '2020-11-13 01:07:32', '2020-11-12 15:07:32', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605193647983{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fas fa-universal-access\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair of Futures Studies</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605193076519{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png?id=233) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fas fa-landmark\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">Managing Director, Engaging Futures</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"20px\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 01:07:32', '2020-11-12 15:07:32', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(238, 1, '2020-11-13 01:09:03', '2020-11-12 15:09:03', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605193735241{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.02.56.png?id=235) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fas fa-universal-access\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair of Futures Studies</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605193710541{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png?id=233) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fas fa-landmark\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">Managing Director, Engaging Futures</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"20px\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 01:09:03', '2020-11-12 15:09:03', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(239, 1, '2020-11-21 21:12:45', '2020-11-21 11:12:45', '[vc_row][vc_column][ultimate_spacer height=\"20\" height_on_mob_landscape=\"0\" height_on_mob=\"0\"][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span>\n\n<span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span>\n\n<span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span>\n\n<span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n\n<ul class=\"font_7\">\n 	<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n 	<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row video_bg=\"yes\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605957126547{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#000000\"][vc_column width=\"1/4\"][/vc_column][vc_column video_bg=\"yes\" width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-autosave-v1', '', '', '2020-11-21 21:12:45', '2020-11-21 11:12:45', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-autosave-v1/', 0, 'revision', '', 0),
(240, 1, '2020-11-13 01:22:00', '2020-11-12 15:22:00', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605194352862{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\" offset=\"vc_hidden-xs\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605194370838{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605194386221{background-color: #000000 !important;}\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair of Futures Studies</span></h6>\r\n<p>[/vc_column_text][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605194485120{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.02.56.png?id=235) !important;}\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605194386221{background-color: #000000 !important;}\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">Managing Director, Engaging Futures</span></h6>\r\n<p>[/vc_column_text][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605194508460{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.04.48.png?id=236) !important;}\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 01:22:00', '2020-11-12 15:22:00', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(241, 1, '2020-11-13 01:33:03', '2020-11-12 15:33:03', '', 'Screen Shot 2020-11-13 at 01.31.57', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-13-at-01-31-57', '', '', '2020-11-13 01:33:03', '2020-11-12 15:33:03', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png', 0, 'attachment', 'image/png', 0),
(242, 1, '2020-11-13 01:33:10', '2020-11-12 15:33:10', '', 'Screen Shot 2020-11-13 at 01.31.46', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-13-at-01-31-46', '', '', '2020-11-13 01:33:10', '2020-11-12 15:33:10', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(243, 1, '2020-11-13 01:34:00', '2020-11-12 15:34:00', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605195202594{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left\"><span style=\"color: #ffffff\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left\"><span style=\"color: #999999\">CEO TREEWORKS</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-dribbble\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][single_icon icon=\"Defaults-linkedin-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-google-plus-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_animation=\"fadeInUp\"][/ultimate_icons][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605195233727{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#212121\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left\"><span style=\"color: #ffffff\">MARIAN GUSTO</span></h3>\r\n<h6 style=\"text-align: left\"><span style=\"color: #999999\">DESIGNER TREEWORKS</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-facebook-square\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][/ultimate_icons][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 01:34:00', '2020-11-12 15:34:00', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(244, 1, '2020-11-13 01:37:30', '2020-11-12 15:37:30', '', 'Screen Shot 2020-11-13 at 01.35.41', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-13-at-01-35-41', '', '', '2020-11-13 01:37:30', '2020-11-12 15:37:30', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png', 0, 'attachment', 'image/png', 0),
(245, 1, '2020-11-13 01:37:36', '2020-11-12 15:37:36', '', 'Screen Shot 2020-11-13 at 01.35.29', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-13-at-01-35-29', '', '', '2020-11-13 01:37:36', '2020-11-12 15:37:36', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png', 0, 'attachment', 'image/png', 0),
(246, 1, '2020-11-13 01:38:14', '2020-11-12 15:38:14', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left\"><span style=\"color: #ffffff\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left\"><span style=\"color: #999999\">CEO TREEWORKS</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-dribbble\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][single_icon icon=\"Defaults-linkedin-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-google-plus-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_animation=\"fadeInUp\"][/ultimate_icons][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605195233727{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#212121\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left\"><span style=\"color: #ffffff\">MARIAN GUSTO</span></h3>\r\n<h6 style=\"text-align: left\"><span style=\"color: #999999\">DESIGNER TREEWORKS</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-facebook-square\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][/ultimate_icons][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 01:38:14', '2020-11-12 15:38:14', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(247, 1, '2020-11-13 01:39:52', '2020-11-12 15:39:52', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left\"><span style=\"color: #ffffff\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left\"><span style=\"color: #999999\">CEO TREEWORKS</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-dribbble\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][single_icon icon=\"Defaults-linkedin-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-google-plus-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_animation=\"fadeInUp\"][/ultimate_icons][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605195588651{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#212121\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left\"><span style=\"color: #ffffff\">MARIAN GUSTO</span></h3>\r\n<h6 style=\"text-align: left\"><span style=\"color: #999999\">DESIGNER TREEWORKS</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-facebook-square\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][/ultimate_icons][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 01:39:52', '2020-11-12 15:39:52', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(248, 1, '2020-11-13 01:42:00', '2020-11-12 15:42:00', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left\"><span style=\"color: #ffffff\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left\"><span style=\"color: #999999\">CEO TREEWORKS</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-dribbble\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][single_icon icon=\"Defaults-linkedin-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-google-plus-square\" icon_size=\"26\" icon_margin=\"0\" icon_color=\"#ffffff\" icon_animation=\"fadeInUp\"][/ultimate_icons][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605195588651{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#212121\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left\"><span style=\"color: #ffffff\">MARIAN GUSTO</span></h3>\r\n<h6 style=\"text-align: left\"><span style=\"color: #999999\">DESIGNER TREEWORKS</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff\">Authoritatively iterate tactical core competencies for cross-media supply chains. Holisticly seize client-based supply chains rather than global innovation. Enthusiastically pontificate team building e-tailers.</span>[/vc_column_text][vc_empty_space height=\"20px\"][ultimate_icons][single_icon icon=\"Defaults-facebook-square\" icon_size=\"26\" icon_margin=\"5\" icon_color=\"#ffffff\" icon_link=\"url:%23||\" icon_animation=\"fadeInUp\"][single_icon icon=\"Defaults-twitter-square\" icon_size=\"26\" icon_margin=\"2\" icon_color=\"#ffffff\" icon_link=\"url:%23||\"][/ultimate_icons][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 01:42:00', '2020-11-12 15:42:00', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(249, 1, '2020-11-13 01:49:56', '2020-11-12 15:49:56', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">CEO TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist; UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne. Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605195588651{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#212121\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">MARIAN GUSTO</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">DESIGNER TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 01:49:56', '2020-11-12 15:49:56', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(250, 1, '2020-11-13 01:54:25', '2020-11-12 15:54:25', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"TEAM GRID LAYOUT\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">CEO TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605195588651{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#212121\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">MARIAN GUSTO</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">DESIGNER TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments.\r\n\r\nAn award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.\r\n\r\nColin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.\r\n\r\nDr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605195477435{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">CEO TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605195588651{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561821278{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #212121 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#212121\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">MARIAN GUSTO</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">DESIGNER TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments.\r\n\r\nAn award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.\r\n\r\nColin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.\r\n\r\nDr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 01:54:25', '2020-11-12 15:54:25', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(251, 1, '2020-11-13 02:06:11', '2020-11-12 16:06:11', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair Of Futures Studies</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605196867550{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png?id=233) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197158330{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-00.54.21.png?id=233) !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605196972171{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">CEO TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments.\r\n\r\nAn award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.\r\n\r\nColin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.\r\n\r\nDr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 02:06:11', '2020-11-12 16:06:11', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(252, 1, '2020-11-13 02:11:13', '2020-11-12 16:11:13', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair Of Futures Studies</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197382149{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">CEO TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments.\r\n\r\nAn award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.\r\n\r\nColin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.\r\n\r\nDr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 02:11:13', '2020-11-12 16:11:13', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(253, 1, '2020-11-13 02:14:23', '2020-11-12 16:14:23', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair Of Futures Studies</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_icon icon_fontawesome=\"fa fa-play\" color=\"custom\" size=\"lg\" custom_color=\"#101010\" el_class=\"icon-absolute-boxes\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">CEO TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments.\r\n\r\nAn award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.\r\n\r\nColin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.\r\n\r\nDr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 02:14:23', '2020-11-12 16:14:23', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(254, 1, '2020-11-13 02:17:13', '2020-11-12 16:17:13', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair Of Futures Studies</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews and worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">LUCAS SPALVIS</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">CEO TREEWORKS</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments.\r\n\r\nAn award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.\r\n\r\nColin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.\r\n\r\nDr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 02:17:13', '2020-11-12 16:17:13', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(255, 1, '2020-11-13 02:24:15', '2020-11-12 16:24:15', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\n<h6></h6>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair Of Futures Studies</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</p>\n<p>&nbsp;[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6></h6>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p>An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.</p>\n<p>Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.</p>\n<p>Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 02:24:15', '2020-11-12 16:24:15', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(256, 1, '2020-11-13 02:26:02', '2020-11-12 16:26:02', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h4|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO Chair Of Futures Studies</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.\r\n\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments.\r\n\r\nAn award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.\r\n\r\nColin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.\r\n\r\nDr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 02:26:02', '2020-11-12 16:26:02', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(257, 1, '2020-11-13 02:33:29', '2020-11-12 16:33:29', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p>An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.</p>\n<p>Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.</p>\n<p>Dr. Russo also presented Futures Courses for UN ESCAP, the AFP, Brisbane Primary Health, National Disability Services, Queensland Library, The 2019 Queensland Government Leadership Series, The Melbourne Business School, City Of Gold Coast, Redland City Council, Bulloo Shire Council. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 02:33:29', '2020-11-12 16:33:29', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(258, 1, '2020-11-13 10:45:48', '2020-11-13 00:45:48', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1481561799125{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #101010 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197469327{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #bcbcbc !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.\r\n\r\nColin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.\r\n\r\nDr. Russo also presented Futures Courses for UN ESCAP, the AFP, Brisbane Primary Health, National Disability Services, Queensland Library, The 2019 Queensland Government Leadership Series, The Melbourne Business School, City Of Gold Coast, Redland City Council, Bulloo Shire Council. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 10:45:48', '2020-11-13 00:45:48', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(259, 1, '2020-11-13 10:49:29', '2020-11-13 00:49:29', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">PROFESSOR SOHAIL INAYATULLAH</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\r\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\r\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\r\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.</p>\r\n<p>Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.</p>\r\n<p>Dr. Russo also presented Futures Courses for UN ESCAP, the AFP, Brisbane Primary Health, National Disability Services, Queensland Library, The 2019 Queensland Government Leadership Series, The Melbourne Business School, City Of Gold Coast, Redland City Council, Bulloo Shire Council. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row]</p>\r\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 10:49:29', '2020-11-13 00:49:29', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(260, 1, '2020-11-13 11:40:15', '2020-11-13 01:40:15', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.</p>\n<p>Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.</p>\n<p>Dr. Russo also presented Futures Courses for UN ESCAP, the AFP, Brisbane Primary Health, National Disability Services, Queensland Library, The 2019 Queensland Government Leadership Series, The Melbourne Business School, City Of Gold Coast, Redland City Council, Bulloo Shire Council. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?  \" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 11:40:15', '2020-11-13 01:40:15', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(261, 1, '2020-11-13 11:46:14', '2020-11-13 01:46:14', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.</p>\n<p>Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.</p>\n<p>Dr. Russo also presented Futures Courses for UN ESCAP, the AFP, Brisbane Primary Health, National Disability Services, Queensland Library, The 2019 Queensland Government Leadership Series, The Melbourne Business School, City Of Gold Coast, Redland City Council, Bulloo Shire Council. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\" rel=\"noopener noreferrer\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 11:46:14', '2020-11-13 01:46:14', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(262, 1, '2020-11-13 11:46:47', '2020-11-13 01:46:47', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.</p>\n<p>Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.</p>\n<p>Dr. Russo also presented Futures Courses for UN ESCAP, the AFP, Brisbane Primary Health, National Disability Services, Queensland Library, The 2019 Queensland Government Leadership Series, The Melbourne Business School, City Of Gold Coast, Redland City Council, Bulloo Shire Council. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\" rel=\"noopener noreferrer\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 11:46:47', '2020-11-13 01:46:47', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(263, 1, '2020-11-13 11:54:56', '2020-11-13 01:54:56', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.</p>\n<p>Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.</p>\n<p>Dr. Russo also presented Futures Courses for UN ESCAP, the AFP, Brisbane Primary Health, National Disability Services, Queensland Library, The 2019 Queensland Government Leadership Series, The Melbourne Business School, City Of Gold Coast, Redland City Council, Bulloo Shire Council. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"90\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\" rel=\"noopener noreferrer\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 11:54:56', '2020-11-13 01:54:56', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(264, 1, '2020-11-13 13:59:20', '2020-11-13 03:59:20', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Dr. Colin Russo has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change.</p>\n<p>Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019.</p>\n<p>Dr. Russo also presented Futures Courses for UN ESCAP, the AFP, Brisbane Primary Health, National Disability Services, Queensland Library, The 2019 Queensland Government Leadership Series, The Melbourne Business School, City Of Gold Coast, Redland City Council, Bulloo Shire Council. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\" rel=\"noopener noreferrer\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 13:59:20', '2020-11-13 03:59:20', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(265, 1, '2020-11-13 14:05:11', '2020-11-13 04:05:11', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 14:05:11', '2020-11-13 04:05:11', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(266, 1, '2020-11-13 14:14:41', '2020-11-13 04:14:41', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 14:14:41', '2020-11-13 04:14:41', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(267, 1, '2020-11-13 14:35:18', '2020-11-13 04:35:18', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" content_placement=\"middle\" css=\".vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column el_class=\"wide-testimonials-mobile\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Testimonials\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][testimonials testimonials_cats=\"dark-text\" number=\"6\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 14:35:18', '2020-11-13 04:35:18', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(268, 1, '2020-11-13 15:13:15', '2020-11-13 05:13:15', '', 'Amanda Hirschausen', '', 'inherit', 'open', 'closed', '', 'amanda-hirschausen', '', '', '2020-11-13 15:13:15', '2020-11-13 05:13:15', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg', 0, 'attachment', 'image/jpeg', 0),
(269, 1, '2020-11-13 15:13:17', '2020-11-13 05:13:17', '', 'Michael Cooke', '', 'inherit', 'open', 'closed', '', 'michael-cooke', '', '', '2020-11-13 15:13:17', '2020-11-13 05:13:17', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg', 0, 'attachment', 'image/jpeg', 0),
(270, 1, '2020-11-13 15:13:18', '2020-11-13 05:13:18', '', 'Edwina Marks', '', 'inherit', 'open', 'closed', '', 'edwina-marks-2', '', '', '2020-11-13 15:13:18', '2020-11-13 05:13:18', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(271, 1, '2020-11-13 15:20:08', '2020-11-13 05:20:08', '', 'Mervin Chiang', '', 'inherit', 'open', 'closed', '', 'mervin-chiang', '', '', '2020-11-13 15:20:08', '2020-11-13 05:20:08', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg', 0, 'attachment', 'image/jpeg', 0),
(272, 1, '2020-11-13 15:52:09', '2020-11-13 05:52:09', '', 'Joe Finneran', '', 'inherit', 'open', 'closed', '', 'joe-finneran', '', '', '2020-11-13 15:52:09', '2020-11-13 05:52:09', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Joe-Finneran.jpeg', 0, 'attachment', 'image/jpeg', 0),
(273, 1, '2020-11-13 15:53:08', '2020-11-13 05:53:08', '', '57366676_2658214920862488_3781843116445663232_o', '', 'inherit', 'open', 'closed', '', '57366676_2658214920862488_3781843116445663232_o', '', '', '2020-11-13 15:53:08', '2020-11-13 05:53:08', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/57366676_2658214920862488_3781843116445663232_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(274, 1, '2020-11-13 15:53:12', '2020-11-13 05:53:12', '', '57094443_2658224444194869_1251765834712350720_o', '', 'inherit', 'open', 'closed', '', '57094443_2658224444194869_1251765834712350720_o', '', '', '2020-11-13 15:53:12', '2020-11-13 05:53:12', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/57094443_2658224444194869_1251765834712350720_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(275, 1, '2020-11-13 15:53:15', '2020-11-13 05:53:15', '', '57568374_2658235834193730_6667417147666333696_o', '', 'inherit', 'open', 'closed', '', '57568374_2658235834193730_6667417147666333696_o', '', '', '2020-11-13 15:53:15', '2020-11-13 05:53:15', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/57568374_2658235834193730_6667417147666333696_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(276, 1, '2020-11-13 15:53:18', '2020-11-13 05:53:18', '', '57284556_2658236814193632_1200955164714860544_o', '', 'inherit', 'open', 'closed', '', '57284556_2658236814193632_1200955164714860544_o', '', '', '2020-11-13 15:53:18', '2020-11-13 05:53:18', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/57284556_2658236814193632_1200955164714860544_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(277, 1, '2020-11-13 15:53:21', '2020-11-13 05:53:21', '', '57209074_2658239127526734_7913116538641580032_o', '', 'inherit', 'open', 'closed', '', '57209074_2658239127526734_7913116538641580032_o', '', '', '2020-11-13 15:53:21', '2020-11-13 05:53:21', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/57209074_2658239127526734_7913116538641580032_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(278, 1, '2020-11-13 15:53:24', '2020-11-13 05:53:24', '', '57511709_2658246754192638_8646399715291693056_o', '', 'inherit', 'open', 'closed', '', '57511709_2658246754192638_8646399715291693056_o', '', '', '2020-11-13 15:53:24', '2020-11-13 05:53:24', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/57511709_2658246754192638_8646399715291693056_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(279, 1, '2020-11-13 15:53:28', '2020-11-13 05:53:28', '', '57262753_2658250024192311_2207423477143568384_o', '', 'inherit', 'open', 'closed', '', '57262753_2658250024192311_2207423477143568384_o', '', '', '2020-11-13 15:53:28', '2020-11-13 05:53:28', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/57262753_2658250024192311_2207423477143568384_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(280, 1, '2020-11-13 15:53:31', '2020-11-13 05:53:31', '', '57155351_2658252794192034_8082062066526978048_o', '', 'inherit', 'open', 'closed', '', '57155351_2658252794192034_8082062066526978048_o', '', '', '2020-11-13 15:53:31', '2020-11-13 05:53:31', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/57155351_2658252794192034_8082062066526978048_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(281, 1, '2020-11-13 15:53:35', '2020-11-13 05:53:35', '', '57240558_2659606377390009_8147236262508494848_o', '', 'inherit', 'open', 'closed', '', '57240558_2659606377390009_8147236262508494848_o', '', '', '2020-11-13 15:53:35', '2020-11-13 05:53:35', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/57240558_2659606377390009_8147236262508494848_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(282, 1, '2020-11-13 15:53:38', '2020-11-13 05:53:38', '', '57267713_2658194400864540_5298615842139799552_o', '', 'inherit', 'open', 'closed', '', '57267713_2658194400864540_5298615842139799552_o', '', '', '2020-11-13 15:53:38', '2020-11-13 05:53:38', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/57267713_2658194400864540_5298615842139799552_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(283, 1, '2020-11-13 15:53:41', '2020-11-13 05:53:41', '', '20615763_1907236922829527_5477434537160719459_o', '', 'inherit', 'open', 'closed', '', '20615763_1907236922829527_5477434537160719459_o', '', '', '2020-11-13 15:53:41', '2020-11-13 05:53:41', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/20615763_1907236922829527_5477434537160719459_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(284, 1, '2020-11-13 15:53:44', '2020-11-13 05:53:44', '', '20800073_1910499542503265_7505898343666093803_n', '', 'inherit', 'open', 'closed', '', '20800073_1910499542503265_7505898343666093803_n', '', '', '2020-11-13 15:53:44', '2020-11-13 05:53:44', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/20800073_1910499542503265_7505898343666093803_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(285, 1, '2020-11-13 15:53:45', '2020-11-13 05:53:45', '', '20914366_1910499549169931_3273451228039313048_n', '', 'inherit', 'open', 'closed', '', '20914366_1910499549169931_3273451228039313048_n', '', '', '2020-11-13 15:53:45', '2020-11-13 05:53:45', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/20914366_1910499549169931_3273451228039313048_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(286, 1, '2020-11-13 15:53:47', '2020-11-13 05:53:47', '', '20842128_1910499565836596_6010907214807209373_n', '', 'inherit', 'open', 'closed', '', '20842128_1910499565836596_6010907214807209373_n', '', '', '2020-11-13 15:53:47', '2020-11-13 05:53:47', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/20842128_1910499565836596_6010907214807209373_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(287, 1, '2020-11-13 15:53:48', '2020-11-13 05:53:48', '', '20768064_1910499575836595_4751460979111461290_n', '', 'inherit', 'open', 'closed', '', '20768064_1910499575836595_4751460979111461290_n', '', '', '2020-11-13 15:53:48', '2020-11-13 05:53:48', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/20768064_1910499575836595_4751460979111461290_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(288, 1, '2020-11-13 15:53:50', '2020-11-13 05:53:50', '', '20842257_1910499625836590_1146819719056592350_n', '', 'inherit', 'open', 'closed', '', '20842257_1910499625836590_1146819719056592350_n', '', '', '2020-11-13 15:53:50', '2020-11-13 05:53:50', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/20842257_1910499625836590_1146819719056592350_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(289, 1, '2020-11-13 15:53:52', '2020-11-13 05:53:52', '', '20770030_1910499585836594_9135680779037222874_n', '', 'inherit', 'open', 'closed', '', '20770030_1910499585836594_9135680779037222874_n', '', '', '2020-11-13 15:53:52', '2020-11-13 05:53:52', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/20770030_1910499585836594_9135680779037222874_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(290, 1, '2020-11-13 15:53:54', '2020-11-13 05:53:54', '', '20841752_1910499599169926_4041892631526116184_n', '', 'inherit', 'open', 'closed', '', '20841752_1910499599169926_4041892631526116184_n', '', '', '2020-11-13 15:53:54', '2020-11-13 05:53:54', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/20841752_1910499599169926_4041892631526116184_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(291, 1, '2020-11-13 16:01:15', '2020-11-13 06:01:15', '', 'Brook Kitson', '', 'inherit', 'open', 'closed', '', 'brook-kitson', '', '', '2020-11-13 16:01:15', '2020-11-13 06:01:15', '', 24, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(292, 1, '2020-11-13 16:01:45', '2020-11-13 06:01:45', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials style_testimonials=\"style2\" des_testimonials_flex_items_desktop=\"1\" des_testimonials_flex_items_small_desktop=\"1\" des_testimonials_flex_items_tablet=\"1\" des_testimonials_flex_items_mobile=\"1\" des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"0\" number=\"3\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"268\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\" title=\"CLEAN DESIGN\"][vc_single_image image=\"269\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"270\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"271\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"272\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"291\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 16:01:45', '2020-11-13 06:01:45', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(293, 1, '2020-11-13 16:06:07', '2020-11-13 06:06:07', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 16:06:07', '2020-11-13 06:06:07', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(294, 1, '2020-11-13 16:06:54', '2020-11-13 06:06:54', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 16:06:54', '2020-11-13 06:06:54', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(295, 1, '2020-11-13 16:10:26', '2020-11-13 06:10:26', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" content_placement=\"middle\" css=\".vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column el_class=\"wide-testimonials-mobile\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"OUR CLIENTS LOVE US\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][testimonials testimonials_cats=\"dark-text\" number=\"6\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 16:10:26', '2020-11-13 06:10:26', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(296, 1, '2020-11-13 16:12:22', '2020-11-13 06:12:22', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" content_placement=\"middle\" css=\".vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column el_class=\"wide-testimonials-mobile\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"OUR CLIENTS LOVE US\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1605247875239{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg?id=291) !important;}\"][vc_empty_space height=\"60px\"][testimonials style_testimonials=\"style2\" des_testimonials_flex_items_desktop=\"1\" des_testimonials_flex_items_small_desktop=\"1\" des_testimonials_flex_items_tablet=\"1\" des_testimonials_flex_items_mobile=\"1\" testimonials_cats=\"0\" number=\"5\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 16:12:22', '2020-11-13 06:12:22', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(297, 1, '2020-11-13 16:24:49', '2020-11-13 06:24:49', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" content_placement=\"middle\" css=\".vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column el_class=\"wide-testimonials-mobile\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 16:24:49', '2020-11-13 06:24:49', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(298, 1, '2020-11-13 16:31:29', '2020-11-13 06:31:29', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" content_placement=\"middle\" css=\".vc_custom_1483477649512{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column el_class=\"wide-testimonials-mobile\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249085154{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new way of thinking and tools to get an outcome) and appreciated our discussion at the end\"[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 16:31:29', '2020-11-13 06:31:29', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(299, 1, '2020-11-13 16:48:07', '2020-11-13 06:48:07', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new way of thinking and tools to get an outcome) and appreciated our discussion at the end\"[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"From the philosophy of human existence to practical tips about engaging business leaders, the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It’s a fabulous opportunity to meet other future-thinking people and share experiences\".[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 16:48:07', '2020-11-13 06:48:07', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(300, 1, '2020-11-13 16:50:48', '2020-11-13 06:50:48', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new way of thinking and tools to get an outcome) and appreciated our discussion at the end\"[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"From the philosophy of human existence to practical tips about engaging business leaders, the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It’s a fabulous opportunity to meet other future-thinking people and share experiences\".[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 16:50:48', '2020-11-13 06:50:48', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(301, 1, '2020-11-13 17:01:06', '2020-11-13 07:01:06', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"From the philosophy of human existence to practical tips about engaging business leaders, the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It’s a fabulous opportunity to meet other future-thinking people and share experiences\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect19\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 17:01:06', '2020-11-13 07:01:06', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(302, 1, '2020-11-13 17:03:00', '2020-11-13 07:03:00', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"From the philosophy of human existence to practical tips about engaging business leaders, the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It’s a fabulous opportunity to meet other future-thinking people and share experiences\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect19\" desc_font_color=\"#000000\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 17:03:00', '2020-11-13 07:03:00', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(303, 1, '2020-11-13 17:22:40', '2020-11-13 07:22:40', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"From the philosophy of human existence to practical tips about engaging business leaders, the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It’s a fabulous opportunity to meet other future-thinking people and share experiences\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks, CEO\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future\".[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 17:22:40', '2020-11-13 07:22:40', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(304, 1, '2020-11-13 17:27:26', '2020-11-13 07:27:26', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"From the philosophy of human existence to practical tips about engaging business leaders, the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It’s a fabulous opportunity to meet other future-thinking people and share experiences\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect19\" title_font_color=\"\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 17:27:26', '2020-11-13 07:27:26', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(305, 1, '2020-11-13 17:30:42', '2020-11-13 07:30:42', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"From the philosophy of human existence to practical tips about engaging business leaders, the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It’s a fabulous opportunity to meet other future-thinking people and share experiences\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" title_font_color=\"\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 17:30:42', '2020-11-13 07:30:42', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(306, 1, '2020-11-13 17:37:13', '2020-11-13 07:37:13', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p>Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p>Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p>Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197332838{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.29.png?id=245) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197660161{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.35.41.png?id=244) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 17:37:13', '2020-11-13 07:37:13', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(307, 1, '2020-11-13 17:40:04', '2020-11-13 07:40:04', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 17:40:04', '2020-11-13 07:40:04', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(308, 1, '2020-11-13 17:53:30', '2020-11-13 07:53:30', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 17:53:30', '2020-11-13 07:53:30', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(309, 1, '2020-11-13 17:59:04', '2020-11-13 07:59:04', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]Professor Sohail Inayatullah is a world-leading futurist and political scientist.\r\n\r\nProfessor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.\r\n\r\nProfessor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.\r\n\r\nProfessor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 17:59:04', '2020-11-13 07:59:04', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(310, 1, '2020-11-13 18:07:27', '2020-11-13 08:07:27', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:11px;\" desc_font_size=\"desktop:12px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-13 18:07:27', '2020-11-13 08:07:27', '', 24, 'http://localhost:8888/wordpress/2020/11/13/24-revision-v1/', 0, 'revision', '', 0),
(311, 1, '2020-11-13 18:12:33', '2020-11-13 08:12:33', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1605184254528{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\" css=\".vc_custom_1605255134482{background-color: #ffffff !important;}\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS<br />\r\nSINGLE DAY FUTURES WORKSHOPS EXPERTS<br />\r\nCONFERENCE KEYNOTE AND PANEL PRESENTERS<br />\r\nORGANISATIONAL VISIONING EXPERTS<br />\r\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]</p>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p>We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 18:12:33', '2020-11-13 08:12:33', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(312, 1, '2020-11-13 18:28:04', '2020-11-13 08:28:04', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1605184254528{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\"][vc_column width=\"1/2\" css=\".vc_custom_1605255134482{background-color: #ffffff !important;}\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS\r\nSINGLE DAY FUTURES WORKSHOPS EXPERTS\r\nCONFERENCE KEYNOTE AND PANEL PRESENTERS\r\nORGANISATIONAL VISIONING EXPERTS\r\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\nWe offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 18:28:04', '2020-11-13 08:28:04', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(313, 1, '2020-11-13 18:44:15', '2020-11-13 08:44:15', '[vc_row bg_type=\"bg_color\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1605257045189{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\" bg_color_value=\"#ffffff\"][vc_column width=\"1/2\" css=\".vc_custom_1605255134482{background-color: #ffffff !important;}\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS\r\nSINGLE DAY FUTURES WORKSHOPS EXPERTS\r\nCONFERENCE KEYNOTE AND PANEL PRESENTERS\r\nORGANISATIONAL VISIONING EXPERTS\r\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\nWe offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 18:44:15', '2020-11-13 08:44:15', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(314, 1, '2020-11-13 18:46:20', '2020-11-13 08:46:20', '[vc_row bg_type=\"bg_color\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(255,255,255,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1605257175847{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\" bg_color_value=\"#ffffff\"][vc_column width=\"1/2\" css=\".vc_custom_1605255134482{background-color: #ffffff !important;}\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS\r\nSINGLE DAY FUTURES WORKSHOPS EXPERTS\r\nCONFERENCE KEYNOTE AND PANEL PRESENTERS\r\nORGANISATIONAL VISIONING EXPERTS\r\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#ffffff\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\nWe offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"40\"][/vc_column][vc_column width=\"1/2\"][ultimate_spacer height=\"100\"][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 18:46:20', '2020-11-13 08:46:20', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(315, 1, '2020-11-13 18:49:40', '2020-11-13 08:49:40', '[vc_row bg_type=\"bg_color\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(255,255,255,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1605257175847{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\" bg_color_value=\"#ffffff\"][vc_column width=\"1/2\" css=\".vc_custom_1605255134482{background-color: #ffffff !important;}\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:14px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES THINKING AND STRATEGY TRANSFORMATION COURSE CONVENORS\r\nSINGLE DAY FUTURES WORKSHOPS EXPERTS\r\nCONFERENCE KEYNOTE AND PANEL PRESENTERS\r\nORGANISATIONAL VISIONING EXPERTS\r\nSTRATEGY AND REPORT AUTHORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#000000\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\" ticker_background=\"#ffffff\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605183944596{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\nWe offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"80\"][/vc_column][vc_column width=\"1/2\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"100\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 18:49:40', '2020-11-13 08:49:40', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(316, 1, '2020-11-13 19:14:49', '2020-11-13 09:14:49', '[vc_row bg_type=\"bg_color\" bg_override=\"browser_size\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"85\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(255,255,255,0.75)\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"80\" css=\".vc_custom_1605257175847{padding-top: 0px !important;padding-bottom: 150px !important;}\" el_class=\"adjusts-tablet-portrait\" bg_color_value=\"#ffffff\"][vc_column width=\"1/2\" css=\".vc_custom_1605255134482{background-color: #ffffff !important;}\"][ultimate_spacer height=\"140\" height_on_mob_landscape=\"150\" height_on_mob=\"150\"][ultimate_heading main_heading=\"WE\'RE ENGAGING FUTURES\" main_heading_color=\"#000000\" alignment=\"left\" main_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" main_heading_style=\"font-weight:300;\" main_heading_font_size=\"desktop:20px;mobile:14px;\" main_heading_line_height=\"desktop:20px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_empty_space height=\"20px\"][ultimate_fancytext fancytext_prefix=\"CONTACT US\" fancytext_align=\"left\" strings_textspeed=\"100\" strings_backspeed=\"100\" strings_startdelay=\"0\" strings_backdelay=\"3500\" typewriter_cursor_text=\"_\" strings_color=\"#f4f4f4\" fancytext_strings=\"FUTURES COURSE HOSTS\r\nKEYNOTE PRESENTERS\r\nORGANISATIONAL PLANNING\r\nSTRATEGY CREATORS\" strings_font_family=\"font_family:Hind|font_call:Hind|variant:500\" strings_font_style=\"font-weight:500;\" strings_font_size=\"desktop:45px;\" fancytext_color=\"#000000\" typewriter_cursor_color=\"#ffffff\" strings_line_height=\"desktop:50px;\" ticker_background=\"#ffffff\"][vc_empty_space height=\"20px\"][vc_column_text css=\".vc_custom_1605258880658{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"]\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\nWe offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.[/vc_column_text][vc_empty_space height=\"60px\"][vc_progress_bar values=\"%5B%7B%22label%22%3A%22FUTURES%20THINKING%20AND%20STRATEGY%20TRANSFORMATION%20COURSES%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22SINGLE%20DAY%20FUTURES%20WORKSHOPS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22STRATEGY%20AND%20REPORT%20AUTHORS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22CONFERENCE%20PRESENTATIONS%22%2C%22value%22%3A%22100%22%7D%2C%7B%22label%22%3A%22ORGANISATIONAL%20CONSULTANTS%22%2C%22value%22%3A%22100%22%7D%5D\" bgcolor=\"custom\" units=\"%\" customtxtcolor=\"#ffffff\"][ultimate_spacer height=\"80\"][/vc_column][vc_column width=\"1/2\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"100\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 19:14:49', '2020-11-13 09:14:49', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(317, 1, '2020-11-13 19:16:36', '2020-11-13 09:16:36', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"3060\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"FIN US ON THE MAP\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 19:16:36', '2020-11-13 09:16:36', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(318, 1, '2020-11-13 19:55:00', '2020-11-13 09:55:00', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605261297938{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2018-07-28-at-08.02.35.png?id=217) !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"3060\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"FIN US ON THE MAP\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 19:55:00', '2020-11-13 09:55:00', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(319, 1, '2020-11-13 19:57:05', '2020-11-13 09:57:05', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605261421824{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"3060\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"FIN US ON THE MAP\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 19:57:05', '2020-11-13 09:57:05', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(320, 1, '2020-11-13 19:59:13', '2020-11-13 09:59:13', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605261550323{background: #ffffff url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"3060\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"FIN US ON THE MAP\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 19:59:13', '2020-11-13 09:59:13', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(321, 1, '2020-11-13 20:00:23', '2020-11-13 10:00:23', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605261620532{background: #ffffff url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"3060\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"FIN US ON THE MAP\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 20:00:23', '2020-11-13 10:00:23', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(322, 1, '2020-11-13 20:03:38', '2020-11-13 10:03:38', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605261813384{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605261620532{background: #ffffff url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"3060\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"FIN US ON THE MAP\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 20:03:38', '2020-11-13 10:03:38', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(323, 1, '2020-11-13 20:42:45', '2020-11-13 10:42:45', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605261813384{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605261620532{background: #ffffff url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 20:42:45', '2020-11-13 10:42:45', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(324, 1, '2020-11-13 20:48:59', '2020-11-13 10:48:59', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605261813384{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264535603{background: __USE_THEME_MAIN_COLOR__ url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West<br />\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 20:48:59', '2020-11-13 10:48:59', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(325, 1, '2020-11-13 20:51:00', '2020-11-13 10:51:00', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605261813384{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264535603{background: __USE_THEME_MAIN_COLOR__ url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"__USE_THEME_MAIN_COLOR__\" sub_heading_color=\"__USE_THEME_MAIN_COLOR__\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 20:51:00', '2020-11-13 10:51:00', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(326, 1, '2020-11-13 20:53:30', '2020-11-13 10:53:30', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264756910{background: __USE_THEME_MAIN_COLOR__ url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"__USE_THEME_MAIN_COLOR__\" sub_heading_color=\"__USE_THEME_MAIN_COLOR__\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 20:53:30', '2020-11-13 10:53:30', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(327, 1, '2020-11-13 20:54:16', '2020-11-13 10:54:16', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"__USE_THEME_MAIN_COLOR__\" sub_heading_color=\"__USE_THEME_MAIN_COLOR__\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 20:54:16', '2020-11-13 10:54:16', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(328, 1, '2020-11-13 21:02:18', '2020-11-13 11:02:18', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"__USE_THEME_MAIN_COLOR__\" sub_heading_color=\"__USE_THEME_MAIN_COLOR__\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner css=\".vc_custom_1605264952828{background-color: #0c0c0c !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:02:18', '2020-11-13 11:02:18', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(329, 1, '2020-11-13 21:05:42', '2020-11-13 11:05:42', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"__USE_THEME_MAIN_COLOR__\" sub_heading_color=\"__USE_THEME_MAIN_COLOR__\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner css=\".vc_custom_1605265539702{background-color: __USE_THEME_MAIN_COLOR__ !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:05:42', '2020-11-13 11:05:42', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(330, 1, '2020-11-13 21:06:27', '2020-11-13 11:06:27', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"__USE_THEME_MAIN_COLOR__\" sub_heading_color=\"__USE_THEME_MAIN_COLOR__\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner css=\".vc_custom_1605265584544{background-color: __USE_THEME_MAIN_COLOR__ !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:06:27', '2020-11-13 11:06:27', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(331, 1, '2020-11-13 21:08:44', '2020-11-13 11:08:44', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605264807212{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"__USE_THEME_MAIN_COLOR__\" sub_heading_color=\"__USE_THEME_MAIN_COLOR__\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner css=\".vc_custom_1605265584544{background-color: __USE_THEME_MAIN_COLOR__ !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1605265646794{background-color: __USE_THEME_MAIN_COLOR__ !important;}\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\" title_font_color=\"__USE_THEME_MAIN_COLOR__\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:08:44', '2020-11-13 11:08:44', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(332, 1, '2020-11-13 21:09:40', '2020-11-13 11:09:40', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605265776727{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"__USE_THEME_MAIN_COLOR__\" sub_heading_color=\"__USE_THEME_MAIN_COLOR__\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner css=\".vc_custom_1605265584544{background-color: __USE_THEME_MAIN_COLOR__ !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1605265646794{background-color: __USE_THEME_MAIN_COLOR__ !important;}\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\" title_font_color=\"__USE_THEME_MAIN_COLOR__\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:09:40', '2020-11-13 11:09:40', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(333, 1, '2020-11-13 21:18:33', '2020-11-13 11:18:33', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"__USE_THEME_MAIN_COLOR__\" css=\".vc_custom_1605266309958{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"__USE_THEME_MAIN_COLOR__\" sub_heading_color=\"__USE_THEME_MAIN_COLOR__\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner css=\".vc_custom_1605265584544{background-color: __USE_THEME_MAIN_COLOR__ !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1605265646794{background-color: __USE_THEME_MAIN_COLOR__ !important;}\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\" title_font_color=\"__USE_THEME_MAIN_COLOR__\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:18:33', '2020-11-13 11:18:33', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(334, 1, '2020-11-13 21:20:09', '2020-11-13 11:20:09', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"__USE_THEME_MAIN_COLOR__\" css=\".vc_custom_1605266309958{margin-bottom: 40px !important;padding-bottom: 40px !important;background-color: #ffffff !important;}\"][vc_column css=\".vc_custom_1605264852522{background-color: __USE_THEME_MAIN_COLOR__ !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"__USE_THEME_MAIN_COLOR__\" sub_heading_color=\"__USE_THEME_MAIN_COLOR__\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner css=\".vc_custom_1605265584544{background-color: __USE_THEME_MAIN_COLOR__ !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1605265646794{background-color: __USE_THEME_MAIN_COLOR__ !important;}\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\" title_font_color=\"__USE_THEME_MAIN_COLOR__\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:20:09', '2020-11-13 11:20:09', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(335, 1, '2020-11-13 21:20:52', '2020-11-13 11:20:52', '[vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:20:52', '2020-11-13 11:20:52', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(336, 1, '2020-11-13 21:24:06', '2020-11-13 11:24:06', '[vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"GET IN TOUCH\" margin_design_tab_text=\"\"]COME CREATE SOMETHING WITH US![/ultimate_heading][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:24:06', '2020-11-13 11:24:06', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(337, 1, '2020-11-13 21:24:36', '2020-11-13 11:24:36', '[vc_row][vc_column][ultimate_heading main_heading=\"GET IN TOUCH\"]COME CREATE SOMETHING WITH US![/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:24:36', '2020-11-13 11:24:36', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(338, 1, '2020-11-13 21:26:14', '2020-11-13 11:26:14', '[vc_row][vc_column css=\".vc_custom_1605266771780{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"GET IN TOUCH\" margin_design_tab_text=\"\"]COME CREATE SOMETHING WITH US![/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:26:14', '2020-11-13 11:26:14', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(339, 1, '2020-11-13 21:27:10', '2020-11-13 11:27:10', '[vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:27:10', '2020-11-13 11:27:10', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(340, 1, '2020-11-13 21:29:02', '2020-11-13 11:29:02', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"3060\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"FIN US ON THE MAP\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:29:02', '2020-11-13 11:29:02', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(341, 1, '2020-11-13 21:30:56', '2020-11-13 11:30:56', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:30:56', '2020-11-13 11:30:56', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(342, 1, '2020-11-13 21:33:55', '2020-11-13 11:33:55', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605267231494{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:33:55', '2020-11-13 11:33:55', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(343, 1, '2020-11-13 21:35:49', '2020-11-13 11:35:49', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605267344750{margin-bottom: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 21:35:49', '2020-11-13 11:35:49', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(344, 1, '2020-11-13 22:51:38', '2020-11-13 12:51:38', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605271894378{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 22:51:38', '2020-11-13 12:51:38', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(345, 1, '2020-11-13 22:52:37', '2020-11-13 12:52:37', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_image_size=\"contain\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605271953522{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 22:52:37', '2020-11-13 12:52:37', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(346, 1, '2020-11-13 22:54:26', '2020-11-13 12:54:26', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_image_size=\"initial\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605272061406{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 22:54:26', '2020-11-13 12:54:26', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(347, 1, '2020-11-13 22:55:10', '2020-11-13 12:55:10', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_image_size=\"initial\" bg_override=\"browser_size\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605272104655{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 22:55:10', '2020-11-13 12:55:10', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(348, 1, '2020-11-13 22:57:32', '2020-11-13 12:57:32', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^203|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png|caption^null|alt^null|title^39515534_307601786662565_527945518987345920_n|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605272249935{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"WE ARE BASED IN THE GREATER METRO AREA OF BRISBANE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 22:57:32', '2020-11-13 12:57:32', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(349, 1, '2020-11-13 23:20:26', '2020-11-13 13:20:26', '', 'ghiffari-haris-eq_JhCNUiTE-unsplash', '', 'inherit', 'open', 'closed', '', 'ghiffari-haris-eq_jhcnuite-unsplash', '', '', '2020-11-13 23:20:26', '2020-11-13 13:20:26', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/ghiffari-haris-eq_JhCNUiTE-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(350, 1, '2020-11-13 23:20:39', '2020-11-13 13:20:39', '', 's-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash', '', 'inherit', 'open', 'closed', '', 's-o-c-i-a-l-c-u-t-jd6djqbveyq-unsplash', '', '', '2020-11-13 23:20:39', '2020-11-13 13:20:39', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/s-o-c-i-a-l-c-u-t-jD6DJqbVeyQ-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(351, 1, '2020-11-13 23:20:54', '2020-11-13 13:20:54', '', 'tim-patch-2vYQCdr74D8-unsplash', '', 'inherit', 'open', 'closed', '', 'tim-patch-2vyqcdr74d8-unsplash', '', '', '2020-11-13 23:20:54', '2020-11-13 13:20:54', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/tim-patch-2vYQCdr74D8-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(352, 1, '2020-11-13 23:21:06', '2020-11-13 13:21:06', '', 'kate-trifo-osyibEP93mQ-unsplash', '', 'inherit', 'open', 'closed', '', 'kate-trifo-osyibep93mq-unsplash', '', '', '2020-11-13 23:21:06', '2020-11-13 13:21:06', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/kate-trifo-osyibEP93mQ-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(353, 1, '2020-11-13 23:21:23', '2020-11-13 13:21:23', '', 'chelsea-gates-q0LZnouDey4-unsplash', '', 'inherit', 'open', 'closed', '', 'chelsea-gates-q0lznoudey4-unsplash', '', '', '2020-11-13 23:21:23', '2020-11-13 13:21:23', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/chelsea-gates-q0LZnouDey4-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(354, 1, '2020-11-13 23:21:39', '2020-11-13 13:21:39', '', 'yesboi-oH35B3XI9qo-unsplash', '', 'inherit', 'open', 'closed', '', 'yesboi-oh35b3xi9qo-unsplash', '', '', '2020-11-13 23:21:39', '2020-11-13 13:21:39', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/yesboi-oH35B3XI9qo-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(355, 1, '2020-11-13 23:21:47', '2020-11-13 13:21:47', '', 'bailey-mahon-tvBK50X9jqI-unsplash', '', 'inherit', 'open', 'closed', '', 'bailey-mahon-tvbk50x9jqi-unsplash', '', '', '2020-11-13 23:21:47', '2020-11-13 13:21:47', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-tvBK50X9jqI-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(356, 1, '2020-11-13 23:22:04', '2020-11-13 13:22:04', '', 'marc-james-0pH5G6kwq7A-unsplash', '', 'inherit', 'open', 'closed', '', 'marc-james-0ph5g6kwq7a-unsplash', '', '', '2020-11-13 23:22:04', '2020-11-13 13:22:04', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/marc-james-0pH5G6kwq7A-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(357, 1, '2020-11-13 23:22:18', '2020-11-13 13:22:18', '', 'caleb-russell-1I-fwrMgMMI-unsplash', '', 'inherit', 'open', 'closed', '', 'caleb-russell-1i-fwrmgmmi-unsplash', '', '', '2020-11-13 23:22:18', '2020-11-13 13:22:18', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/caleb-russell-1I-fwrMgMMI-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(358, 1, '2020-11-13 23:22:34', '2020-11-13 13:22:34', '', 'jack-castles-x4GX_sxCPnM-unsplash', '', 'inherit', 'open', 'closed', '', 'jack-castles-x4gx_sxcpnm-unsplash', '', '', '2020-11-13 23:22:34', '2020-11-13 13:22:34', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/jack-castles-x4GX_sxCPnM-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(359, 1, '2020-11-13 23:22:49', '2020-11-13 13:22:49', '', 'lochlainn-riordan-JOfW3MPjVp4-unsplash', '', 'inherit', 'open', 'closed', '', 'lochlainn-riordan-jofw3mpjvp4-unsplash', '', '', '2020-11-13 23:22:49', '2020-11-13 13:22:49', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/lochlainn-riordan-JOfW3MPjVp4-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(360, 1, '2020-11-13 23:23:05', '2020-11-13 13:23:05', '', 'bailey-mahon-Bgw2ZeZIIUw-unsplash', '', 'inherit', 'open', 'closed', '', 'bailey-mahon-bgw2zeziiuw-unsplash', '', '', '2020-11-13 23:23:05', '2020-11-13 13:23:05', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(361, 1, '2020-11-13 23:23:20', '2020-11-13 13:23:20', '', 'lochlainn-riordan-G6CR8v_bts0-unsplash', '', 'inherit', 'open', 'closed', '', 'lochlainn-riordan-g6cr8v_bts0-unsplash', '', '', '2020-11-13 23:23:20', '2020-11-13 13:23:20', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/lochlainn-riordan-G6CR8v_bts0-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(362, 1, '2020-11-13 23:23:34', '2020-11-13 13:23:34', '', 'loren-gu-jfDp9VzJA3Y-unsplash', '', 'inherit', 'open', 'closed', '', 'loren-gu-jfdp9vzja3y-unsplash', '', '', '2020-11-13 23:23:34', '2020-11-13 13:23:34', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/loren-gu-jfDp9VzJA3Y-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(363, 1, '2020-11-13 23:23:45', '2020-11-13 13:23:45', '', 'caleb-russell-mKwBMtDSZes-unsplash', '', 'inherit', 'open', 'closed', '', 'caleb-russell-mkwbmtdszes-unsplash', '', '', '2020-11-13 23:23:45', '2020-11-13 13:23:45', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/caleb-russell-mKwBMtDSZes-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(364, 1, '2020-11-13 23:23:54', '2020-11-13 13:23:54', '', 'chelsea-gates-OGWfrVITyrM-unsplash', '', 'inherit', 'open', 'closed', '', 'chelsea-gates-ogwfrvityrm-unsplash', '', '', '2020-11-13 23:23:54', '2020-11-13 13:23:54', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/chelsea-gates-OGWfrVITyrM-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(365, 1, '2020-11-13 23:24:09', '2020-11-13 13:24:09', '', 'chelsea-gates-0_IJ2OzCeIc-unsplash', '', 'inherit', 'open', 'closed', '', 'chelsea-gates-0_ij2ozceic-unsplash', '', '', '2020-11-13 23:24:09', '2020-11-13 13:24:09', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/chelsea-gates-0_IJ2OzCeIc-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(366, 1, '2020-11-13 23:24:24', '2020-11-13 13:24:24', '', 'patrick-ryan-5EtJJoxJ5pY-unsplash', '', 'inherit', 'open', 'closed', '', 'patrick-ryan-5etjjoxj5py-unsplash', '', '', '2020-11-13 23:24:24', '2020-11-13 13:24:24', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/patrick-ryan-5EtJJoxJ5pY-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(367, 1, '2020-11-13 23:24:32', '2020-11-13 13:24:32', '', 'matt-barrett-Lk_76YmymWo-unsplash', '', 'inherit', 'open', 'closed', '', 'matt-barrett-lk_76ymymwo-unsplash', '', '', '2020-11-13 23:24:32', '2020-11-13 13:24:32', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/matt-barrett-Lk_76YmymWo-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(368, 1, '2020-11-13 23:24:47', '2020-11-13 13:24:47', '', 'carles-rabada-yMF35mdqM3Q-unsplash', '', 'inherit', 'open', 'closed', '', 'carles-rabada-ymf35mdqm3q-unsplash', '', '', '2020-11-13 23:24:47', '2020-11-13 13:24:47', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/carles-rabada-yMF35mdqM3Q-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(369, 1, '2020-11-13 23:24:56', '2020-11-13 13:24:56', '', 'marianne-heino-pV8fZ0qUe84-unsplash', '', 'inherit', 'open', 'closed', '', 'marianne-heino-pv8fz0que84-unsplash', '', '', '2020-11-13 23:24:56', '2020-11-13 13:24:56', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/marianne-heino-pV8fZ0qUe84-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(370, 1, '2020-11-13 23:25:11', '2020-11-13 13:25:11', '', 'jordan-evtWtv0i-6E-unsplash', '', 'inherit', 'open', 'closed', '', 'jordan-evtwtv0i-6e-unsplash', '', '', '2020-11-13 23:25:11', '2020-11-13 13:25:11', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/jordan-evtWtv0i-6E-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(371, 1, '2020-11-13 23:25:24', '2020-11-13 13:25:24', '', 'chris-fuller-fU_WckUagZA-unsplash', '', 'inherit', 'open', 'closed', '', 'chris-fuller-fu_wckuagza-unsplash', '', '', '2020-11-13 23:25:24', '2020-11-13 13:25:24', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/chris-fuller-fU_WckUagZA-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(372, 1, '2020-11-13 23:25:40', '2020-11-13 13:25:40', '', 'carles-rabada-jySre5zSJVs-unsplash', '', 'inherit', 'open', 'closed', '', 'carles-rabada-jysre5zsjvs-unsplash', '', '', '2020-11-13 23:25:40', '2020-11-13 13:25:40', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/carles-rabada-jySre5zSJVs-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(373, 1, '2020-11-13 23:25:48', '2020-11-13 13:25:48', '', 'carles-rabada-yKAgTzz7jWk-unsplash', '', 'inherit', 'open', 'closed', '', 'carles-rabada-ykagtzz7jwk-unsplash', '', '', '2020-11-13 23:25:48', '2020-11-13 13:25:48', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/carles-rabada-yKAgTzz7jWk-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(374, 1, '2020-11-13 23:25:57', '2020-11-13 13:25:57', '', 'sean-sinclair-k0JNJRbrJAs-unsplash', '', 'inherit', 'open', 'closed', '', 'sean-sinclair-k0jnjrbrjas-unsplash', '', '', '2020-11-13 23:25:57', '2020-11-13 13:25:57', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/sean-sinclair-k0JNJRbrJAs-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(375, 1, '2020-11-13 23:26:12', '2020-11-13 13:26:12', '', 'sean-sinclair-Z3iQro6aRQE-unsplash', '', 'inherit', 'open', 'closed', '', 'sean-sinclair-z3iqro6arqe-unsplash', '', '', '2020-11-13 23:26:12', '2020-11-13 13:26:12', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/sean-sinclair-Z3iQro6aRQE-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(376, 1, '2020-11-13 23:34:51', '2020-11-13 13:34:51', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605274098742{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1605274489148{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/kate-trifo-osyibEP93mQ-unsplash-scaled.jpg?id=352) !important;}\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 23:34:51', '2020-11-13 13:34:51', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(377, 1, '2020-11-13 23:38:37', '2020-11-13 13:38:37', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"203\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605274662534{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274713848{margin-top: 120px !important;margin-bottom: 120px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/39515534_307601786662565_527945518987345920_n.png?id=203) !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 23:38:37', '2020-11-13 13:38:37', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(378, 1, '2020-11-13 23:41:49', '2020-11-13 13:41:49', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"203\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605274662534{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1605274906384{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg?id=360) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 23:41:49', '2020-11-13 13:41:49', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(379, 1, '2020-11-13 23:53:31', '2020-11-13 13:53:31', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"203\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605274662534{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1605274906384{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg?id=360) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-13 23:53:31', '2020-11-13 13:53:31', '', 29, 'http://localhost:8888/wordpress/2020/11/13/29-revision-v1/', 0, 'revision', '', 0),
(380, 1, '2020-11-14 00:00:16', '2020-11-13 14:00:16', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"203\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605276011668{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1605275948357{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg?id=360) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 00:00:16', '2020-11-13 14:00:16', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(381, 1, '2020-11-14 00:05:18', '2020-11-13 14:05:18', '', 'gabriel-tan-_5-kOWfzHWM-unsplash', '', 'inherit', 'open', 'closed', '', 'gabriel-tan-_5-kowfzhwm-unsplash', '', '', '2020-11-14 00:05:18', '2020-11-13 14:05:18', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/gabriel-tan-_5-kOWfzHWM-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(382, 1, '2020-11-14 00:05:29', '2020-11-13 14:05:29', '', 'jane-slack-smith-ue_rRo0nKbc-unsplash', '', 'inherit', 'open', 'closed', '', 'jane-slack-smith-ue_rro0nkbc-unsplash', '', '', '2020-11-14 00:05:29', '2020-11-13 14:05:29', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/jane-slack-smith-ue_rRo0nKbc-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(383, 1, '2020-11-14 00:05:39', '2020-11-13 14:05:39', '', 'alli-carr-ZVPlJG6xs_U-unsplash', '', 'inherit', 'open', 'closed', '', 'alli-carr-zvpljg6xs_u-unsplash', '', '', '2020-11-14 00:05:39', '2020-11-13 14:05:39', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/alli-carr-ZVPlJG6xs_U-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(384, 1, '2020-11-14 00:05:53', '2020-11-13 14:05:53', '', 'denise-jans--gmtAa0Q5MI-unsplash', '', 'inherit', 'open', 'closed', '', 'denise-jans-gmtaa0q5mi-unsplash', '', '', '2020-11-14 00:05:53', '2020-11-13 14:05:53', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/denise-jans-gmtAa0Q5MI-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(385, 1, '2020-11-14 00:06:08', '2020-11-13 14:06:08', '', 'lennon-cheng-1DBorbXxwbs-unsplash', '', 'inherit', 'open', 'closed', '', 'lennon-cheng-1dborbxxwbs-unsplash', '', '', '2020-11-14 00:06:08', '2020-11-13 14:06:08', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/lennon-cheng-1DBorbXxwbs-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(386, 1, '2020-11-14 00:06:18', '2020-11-13 14:06:18', '', 'brisbane-local-marketing-nHiPAtsZcCo-unsplash', '', 'inherit', 'open', 'closed', '', 'brisbane-local-marketing-nhipatszcco-unsplash', '', '', '2020-11-14 00:06:18', '2020-11-13 14:06:18', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/brisbane-local-marketing-nHiPAtsZcCo-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(387, 1, '2020-11-14 00:06:34', '2020-11-13 14:06:34', '', 'brisbane-local-marketing-RJII3O7CTeo-unsplash', '', 'inherit', 'open', 'closed', '', 'brisbane-local-marketing-rjii3o7cteo-unsplash', '', '', '2020-11-14 00:06:34', '2020-11-13 14:06:34', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/brisbane-local-marketing-RJII3O7CTeo-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(388, 1, '2020-11-14 00:06:55', '2020-11-13 14:06:55', '', 'jamie-mcglinchey-q19ZRZE4tGI-unsplash', '', 'inherit', 'open', 'closed', '', 'jamie-mcglinchey-q19zrze4tgi-unsplash', '', '', '2020-11-14 00:06:55', '2020-11-13 14:06:55', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(389, 1, '2020-11-14 01:04:28', '2020-11-13 15:04:28', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Vision</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Our Mission</h4>\n<p>Appropriately create future-proof solutions whereas extensible strategic theme areas. Objectively fabricate impactful networks vis-a-vis error-free deliverables. Quickly create intuitive deliverables rather than cross-media customer service[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.</p>\n<p>Energistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 01:04:28', '2020-11-13 15:04:28', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(390, 1, '2020-11-14 01:09:35', '2020-11-13 15:09:35', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 01:09:35', '2020-11-13 15:09:35', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(391, 1, '2020-11-14 01:14:19', '2020-11-13 15:14:19', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, BUT HOW DO WE GET THERE?\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 01:14:19', '2020-11-13 15:14:19', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(392, 1, '2020-11-14 01:16:39', '2020-11-13 15:16:39', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, BUT GET REAL - HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 01:16:39', '2020-11-13 15:16:39', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(393, 1, '2020-11-14 01:19:09', '2020-11-13 15:19:09', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, BUT GET REAL - HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE BUILD GOOD STUFF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/3\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 01:19:09', '2020-11-13 15:19:09', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(394, 1, '2020-11-14 01:22:43', '2020-11-13 15:22:43', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, BUT GET REAL - HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-pencil-ruler\" icon_size=\"30\" title=\"CLEAN DESIGN\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][vc_column width=\"1/4\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 01:22:43', '2020-11-13 15:22:43', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(395, 1, '2020-11-14 01:35:33', '2020-11-13 15:35:33', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"PREMIUM RESOURCES\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][vc_column width=\"1/4\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 01:35:33', '2020-11-13 15:35:33', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(396, 1, '2020-11-14 01:39:46', '2020-11-13 15:39:46', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][vc_column width=\"1/4\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"30\" title=\"RESPONSIVE LAYOUT\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Professionally repurpose premium rather than magnetic bandwidth.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 01:39:46', '2020-11-13 15:39:46', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(397, 1, '2020-11-14 01:52:17', '2020-11-13 15:52:17', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.\r\n\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 01:52:17', '2020-11-13 15:52:17', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(398, 1, '2020-11-14 01:55:40', '2020-11-13 15:55:40', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.\r\n\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"WE WORK HARD\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]Intrinsicly engineer one-to-one partnerships with error-free customer service. Competently optimize goal-oriented technology via low-risk high-yield materials engage.\r\n\r\nEnergistically develop client-centered web services without focused data. Conveniently syndicate leveraged scenarios.[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 01:55:40', '2020-11-13 15:55:40', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(399, 1, '2020-11-14 02:03:20', '2020-11-13 16:03:20', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.\r\n\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">​Engaging Futures practices with the support of its Board, the UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and selected Futurists, on a regular basis.</p>\r\n<p class=\"font_5\"><span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Friends of Engaging Futures includes wonderful friends at Metafuture, Professor Ivana Melojevic, USC, clients, many participant alumni, journal editors, and professional body executives.</p>\r\n\r\n<h5><strong>Our Network</strong></h5>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n [/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 02:03:20', '2020-11-13 16:03:20', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(400, 1, '2020-11-14 02:10:52', '2020-11-13 16:10:52', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.\r\n\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5><strong>Our Client Network</strong></h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][vc_btn title=\"OUTSTANDING FEATURES\" style=\"outline-custom\" outline_custom_color=\"#101010\" outline_custom_hover_background=\"#101010\" outline_custom_hover_text=\"#f2f2f2\" shape=\"square\" size=\"xs\" css_animation=\"bottom-to-top\"][vc_empty_space height=\"40px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 02:10:52', '2020-11-13 16:10:52', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(401, 1, '2020-11-14 02:12:23', '2020-11-13 16:12:23', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.\r\n\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5><strong>Our Client Network</strong></h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 02:12:23', '2020-11-13 16:12:23', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(402, 1, '2020-11-14 02:14:23', '2020-11-13 16:14:23', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.\r\n\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 02:14:23', '2020-11-13 16:14:23', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(403, 1, '2020-11-14 02:16:29', '2020-11-13 16:16:29', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.\r\n\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 02:16:29', '2020-11-13 16:16:29', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(404, 1, '2020-11-14 02:37:44', '2020-11-13 16:37:44', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"fadeInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 02:37:44', '2020-11-13 16:37:44', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(405, 1, '2020-11-14 02:39:21', '2020-11-13 16:39:21', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 02:39:21', '2020-11-13 16:39:21', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(406, 1, '2020-11-14 03:13:50', '2020-11-13 17:13:50', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_single_image image=\"8892\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"80\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1480354809822{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR VALUES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Uniquely create competitive e-markets for backward-compatible technologies. Authoritatively morph efficient networks via bleeding-edge results. Completely drive 24/365 e-markets via quality e-business. Progressively plagiarize enterprise strategic theme areas with ubiquitous sources. Enthusiastically drive team driven processes rather than e-tailers.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR MISSION\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_column_text]Conveniently maximize standardized web-readiness without integrated products. Competently productivate fully researched results via empowered e-commerce. Quickly repurpose cross-unit methodologies for leading-edge materials. Monotonectally enhance team driven human capital whereas worldwide.[/vc_column_text][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"OUR SKILLS\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"25px\"][vc_progress_bar values=\"95|Development,85|Design,70|Marketing,65|Consulting\" bgcolor=\"custom\" custombgcolor=\"#212121\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" bg_color_value=\"#ffffff\" css=\".vc_custom_1481470976096{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1409832387950{margin-bottom: 0px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Inspire\" banner_image=\"id^9529|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-1.jpg|caption^null|alt^null|title^service-1|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.4\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WORK SPACE\" banner_desc=\"Evolve\" banner_image=\"id^9540|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-6.jpg|caption^null|alt^null|title^service-6|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"0.8\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"PHOTOGRAPHY\" banner_desc=\"Dream\" banner_image=\"id^9539|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-5.jpg|caption^null|alt^null|title^service-5|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"1\" animation_delay=\"1.2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"WEB DESIGN\" banner_desc=\"Design\" banner_image=\"id^9536|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-2.jpg|caption^null|alt^null|title^service-2|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"1\" animation_delay=\"1.6\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"APP DEVELOPMENT\" banner_desc=\"Create\" banner_image=\"id^9538|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-4.jpg|caption^null|alt^null|title^service-4|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"1\" animation_delay=\"2\" animation_iteration_count=\"1\"][interactive_banner_2 banner_title=\"LETS PRINT\" banner_desc=\"Desire\" banner_image=\"id^9541|url^http://treekode.com/maple/wp-content/uploads/2016/08/service-7.jpg|caption^null|alt^null|title^service-7|description^null\" banner_link=\"url:%23||\" banner_style=\"style13\" banner_color_bg=\"#101010\" image_opacity=\"1\" image_opacity_on_hover=\"0.4\" banner_title_font_family=\"font_family:Roboto|font_call:Roboto|variant:500\" banner_title_style=\"font-weight:500;\" banner_title_font_size=\"desktop:14px;\" banner_desc_font_family=\"font_family:Hind|font_call:Hind|variant:300\" banner_desc_style=\"font-weight:300;\" banner_desc_font_size=\"desktop:34px;\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Clients\" font_container=\"tag:h2|font_size:34px|text_align:center|line_height:44px\" use_theme_fonts=\"yes\" el_class=\"h2support\"][vc_custom_heading text=\"Creation of Engaging Futures for our respected Clients\" font_container=\"tag:p|font_size:18px|text_align:center|line_height:26px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][cubeportfolio id=\"30\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9514|url^http://treekode.com/maple/wp-content/uploads/2016/08/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1481470788883{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column width=\"2/3\"][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"Defaults-home\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MINIMALIST DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Amazing new text[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-joystick\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"VISUAL PAGE BUILDER\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1447633643271{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-laptop-phone\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"RESPONSIVE DESIGN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bucket\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"UNLIMITED COLORS\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"linearicons-pencil-ruler2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"STRONG ADMIN\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][bsf-info-box icon=\"linearicons-bookmark2\" icon_size=\"20\" icon_color=\"\" icon_style=\"advanced\" icon_color_bg=\"__USE_THEME_MAIN_COLOR__\" icon_border_spacing=\"80\" icon_animation=\"fadeInUp\" title=\"MEGA MENU\" pos=\"left\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:11px;\"]Praesent faucibus nisl sit amet nulla sollicitudin pretium a sed purus[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column][vc_custom_heading text=\"OUR AWESOME TEAM\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Showcase your team with style! 19 Effects available.\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_shape=\"square\" thumb_height_width=\"200\" gutter_width=\"30\"][ult_ihover_item title=\"LUCAS SMITH\" thumb_img=\"id^9330|url^http://treekode.com/maple/wp-content/uploads/2016/08/t5.jpg|caption^null|alt^null|title^t5|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"MARK CROOD\" thumb_img=\"id^9333|url^http://treekode.com/maple/wp-content/uploads/2016/08/t1-1.jpg|caption^null|alt^null|title^t1|description^null\" hover_effect=\"effect11\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"SAMANTHA ROGER\" thumb_img=\"id^9331|url^http://treekode.com/maple/wp-content/uploads/2016/08/t6.jpg|caption^null|alt^null|title^t6|description^null\" hover_effect=\"effect2\" desc_font_color=\"#ffffff\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]The legend are there to inspire you[/ult_ihover_item][ult_ihover_item title=\"Lucas Doe\" thumb_img=\"id^9338|url^http://treekode.com/maple/wp-content/uploads/2016/08/t2.jpg|caption^null|alt^null|title^t2|description^null\" hover_effect=\"effect11\" title_font_color=\"\" info_color_bg=\"__USE_THEME_MAIN_COLOR__\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]Web Developer[/ult_ihover_item][/ult_ihover][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 03:13:50', '2020-11-13 17:13:50', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(407, 1, '2020-11-14 03:22:04', '2020-11-13 17:22:04', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\r\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\r\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\r\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p></blockquote>\r\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^10407|url^http://treethemes.net/themes/maple/demo1/wp-content/uploads/sites/2/revslider/homev4/432423.jpg|caption^null|alt^null|title^432423.jpg|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(12,12,12,0.84)\" css=\".vc_custom_1526471688618{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][vc_custom_heading text=\"AGENCY ACHIEVEMENTS\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][ultimate_spacer height=\"70\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-self-timer\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"HOURS OF WORK\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-rocket\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"FINISHED WORKS\" counter_value=\"340\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-users2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"CLIENTS\" counter_value=\"95\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][stat_counter icon=\"linearicons-share2\" icon_size=\"45\" icon_color=\"__USE_THEME_MAIN_COLOR__\" counter_title=\"SOCIAL FOLLOWERS\" counter_value=\"11250\" counter_sep=\"\" counter_decimal=\"\" speed=\"3\" font_size_title=\"12\" font_size_counter=\"58\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:45px;mobile_landscape:16px;mobile:14px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\r\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 03:22:04', '2020-11-13 17:22:04', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0),
(408, 1, '2020-11-14 03:23:41', '2020-11-13 17:23:41', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\r\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\r\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\r\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p></blockquote>\r\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][contact-form-7 id=\"8\"][/vc_column][/vc_row]</p>\r\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 03:23:41', '2020-11-13 17:23:41', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(409, 1, '2020-11-14 03:24:33', '2020-11-13 17:24:33', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\r\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\r\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\r\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p></blockquote>\r\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\r\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 03:24:33', '2020-11-13 17:24:33', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0),
(410, 1, '2020-11-14 10:43:30', '2020-11-14 00:43:30', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\r\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\r\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\r\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#2468ef\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p></blockquote>\r\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]</p>\r\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 10:43:30', '2020-11-14 00:43:30', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0),
(411, 1, '2020-11-14 11:11:19', '2020-11-14 01:11:19', '', 'Surfer_edited', '', 'inherit', 'open', 'closed', '', 'surfer_edited', '', '', '2020-11-14 11:11:19', '2020-11-14 01:11:19', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Surfer_edited.jpg', 0, 'attachment', 'image/jpeg', 0),
(412, 1, '2020-11-14 11:13:13', '2020-11-14 01:13:13', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"411\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316387037{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358<br />\r\n42-60 Albert Street<br />\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1605275948357{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg?id=360) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 11:13:13', '2020-11-14 01:13:13', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(413, 1, '2020-11-14 11:15:11', '2020-11-14 01:15:11', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358<br />\r\n42-60 Albert Street<br />\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1605275948357{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/bailey-mahon-Bgw2ZeZIIUw-unsplash-scaled.jpg?id=360) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 11:15:11', '2020-11-14 01:15:11', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(414, 1, '2020-11-14 11:17:57', '2020-11-14 01:17:57', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358<br />\n42-60 Albert Street<br />\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row][vc_row][vc_column][rev_slider][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 11:17:57', '2020-11-14 01:17:57', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(415, 1, '2020-11-14 11:18:45', '2020-11-14 01:18:45', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358<br />\n42-60 Albert Street<br />\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 11:18:45', '2020-11-14 01:18:45', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(416, 1, '2020-11-14 11:41:37', '2020-11-14 11:41:37', '', 'macbookpro.png', '', 'inherit', 'closed', 'closed', '', 'macbookpro-png', '', '', '2020-11-14 11:41:37', '2020-11-14 11:41:37', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/macbookpro.png', 0, 'attachment', 'image/png', 0),
(417, 1, '2020-11-14 11:41:37', '2020-11-14 11:41:37', '', 'screen1_content.jpg', '', 'inherit', 'closed', 'closed', '', 'screen1-content-jpg', '', '', '2020-11-14 11:41:37', '2020-11-14 11:41:37', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/screen1_content.jpg', 0, 'attachment', 'image/jpeg', 0),
(418, 1, '2020-11-14 11:41:38', '2020-11-14 11:41:38', '', 'ipad.png', '', 'inherit', 'closed', 'closed', '', 'ipad-png', '', '', '2020-11-14 11:41:38', '2020-11-14 11:41:38', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/ipad.png', 0, 'attachment', 'image/png', 0),
(419, 1, '2020-11-14 11:41:38', '2020-11-14 11:41:38', '', 'owl1.jpg', '', 'inherit', 'closed', 'closed', '', 'owl1-jpg', '', '', '2020-11-14 11:41:38', '2020-11-14 11:41:38', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/owl1.jpg', 0, 'attachment', 'image/jpeg', 0),
(420, 1, '2020-11-14 11:41:38', '2020-11-14 11:41:38', '', 'ihpone.png', '', 'inherit', 'closed', 'closed', '', 'ihpone-png', '', '', '2020-11-14 11:41:38', '2020-11-14 11:41:38', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/ihpone.png', 0, 'attachment', 'image/png', 0),
(421, 1, '2020-11-14 11:41:38', '2020-11-14 11:41:38', '', 'owl2.jpg', '', 'inherit', 'closed', 'closed', '', 'owl2-jpg', '', '', '2020-11-14 11:41:38', '2020-11-14 11:41:38', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/owl2.jpg', 0, 'attachment', 'image/jpeg', 0),
(422, 1, '2020-11-14 11:41:38', '2020-11-14 11:41:38', '', 'light1.jpg', '', 'inherit', 'closed', 'closed', '', 'light1-jpg', '', '', '2020-11-14 11:41:38', '2020-11-14 11:41:38', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/light1.jpg', 0, 'attachment', 'image/jpeg', 0),
(423, 1, '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 'lighton1.png', '', 'inherit', 'closed', 'closed', '', 'lighton1-png', '', '', '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/lighton1.png', 0, 'attachment', 'image/png', 0),
(424, 1, '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 'arrow4.png', '', 'inherit', 'closed', 'closed', '', 'arrow4-png', '', '', '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/arrow4.png', 0, 'attachment', 'image/png', 0),
(425, 1, '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 'whitehorse_logo.png', '', 'inherit', 'closed', 'closed', '', 'whitehorse-logo-png', '', '', '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/alias/whitehorse_logo.png', 0, 'attachment', 'image/png', 0),
(426, 1, '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 'arrow1.png', '', 'inherit', 'closed', 'closed', '', 'arrow1-png', '', '', '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/alias/arrow1.png', 0, 'attachment', 'image/png', 0),
(427, 1, '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 'arrow2.png', '', 'inherit', 'closed', 'closed', '', 'arrow2-png', '', '', '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/alias/arrow2.png', 0, 'attachment', 'image/png', 0),
(428, 1, '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 'arrow3.png', '', 'inherit', 'closed', 'closed', '', 'arrow3-png', '', '', '2020-11-14 11:41:39', '2020-11-14 11:41:39', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/alias/arrow3.png', 0, 'attachment', 'image/png', 0),
(429, 1, '2020-11-14 13:32:52', '2020-11-14 03:32:52', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"8\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 13:32:52', '2020-11-14 03:32:52', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(430, 1, '2020-11-14 13:33:10', '2020-11-14 03:33:10', '<label> My name is\r\n    [text* your-name] </label>\r\n\r\n<label> I\'m from (optional organisation name)\r\n    [text* your-organisation] </label>\r\n\r\n<label> You can reach me at (email address)\r\n    [email* your-email] </label>\r\n\r\n<label> I need your help with (this topic)\r\n    [text* your-subject] </label>\r\n\r\n<label> Let me tell you a little about it (optional)\r\n    [textarea your-message] </label>\r\n\r\n<FONT COLOR=\"1D8DB0\">[submit \"Submit\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <colinrusso@engagingfutures.com>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <drcolinrusso@gmail.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\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 email address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.', 'Contact form 1_TONGUE-IN-CHEEK-CHARM', '', 'publish', 'closed', 'closed', '', 'contact-form-1_copy', '', '', '2020-11-14 15:36:02', '2020-11-14 05:36:02', '', 0, 'http://localhost:8888/wordpress/?post_type=wpcf7_contact_form&#038;p=430', 0, 'wpcf7_contact_form', '', 0),
(431, 1, '2020-11-14 13:37:18', '2020-11-14 03:37:18', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605267300578{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 13:37:18', '2020-11-14 03:37:18', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(432, 1, '2020-11-14 13:48:30', '2020-11-14 03:48:30', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325707134{background-color: #2c5885 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605274852275{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 13:48:30', '2020-11-14 03:48:30', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(434, 1, '2020-11-14 13:51:59', '2020-11-14 03:51:59', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 13:51:59', '2020-11-14 03:51:59', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(435, 1, '2020-11-14 14:36:13', '2020-11-14 04:36:13', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO TRANSFORM OR JUST ADAPT?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]LET’S CREATE YOUR PREFERRED FUTURE![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 14:36:13', '2020-11-14 04:36:13', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(436, 1, '2020-11-14 14:43:01', '2020-11-14 04:43:01', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]WE CAN HELP YOU TO CREATE YOUR PREFERRED FUTURE[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 14:43:01', '2020-11-14 04:43:01', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(437, 1, '2020-11-14 15:56:00', '2020-11-14 05:56:00', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]</p>\n<h2>WE HELP YOU CREATE PREFERRED FUTURES</h2>\n<p>[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358<br />\n42-60 Albert Street<br />\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 15:56:00', '2020-11-14 05:56:00', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(438, 1, '2020-11-14 15:56:32', '2020-11-14 05:56:32', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]WE CAN HELP YOU TO CREATE YOUR PREFERRED FUTURE[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 15:56:32', '2020-11-14 05:56:32', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(439, 1, '2020-11-14 15:57:27', '2020-11-14 05:57:27', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]WE HELP CREATE YOUR PREFERRED FUTURES[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 15:57:27', '2020-11-14 05:57:27', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(440, 1, '2020-11-14 16:06:42', '2020-11-14 06:06:42', '{\n    \"blogdescription\": {\n        \"value\": \"We create preferred futures\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-11-14 06:06:42\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'f6a968d5-4409-46a3-8026-120566a64f03', '', '', '2020-11-14 16:06:42', '2020-11-14 06:06:42', '', 0, 'http://localhost:8888/wordpress/2020/11/14/f6a968d5-4409-46a3-8026-120566a64f03/', 0, 'customize_changeset', '', 0),
(442, 1, '2020-11-14 16:22:51', '2020-11-14 06:22:51', '', 'logo', '', 'inherit', 'open', 'closed', '', 'logo', '', '', '2020-11-14 16:22:51', '2020-11-14 06:22:51', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/logo.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(443, 1, '2020-11-14 17:52:31', '2020-11-14 07:52:31', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"__USE_THEME_MAIN_COLOR__\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 17:52:31', '2020-11-14 07:52:31', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0),
(444, 1, '2020-11-14 17:53:46', '2020-11-14 07:53:46', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][ultimate_heading main_heading=\"OUR CLIENTS\" main_heading_font_family=\"font_family:Montserrat|font_call:Montserrat|variant:700\" main_heading_style=\"font-weight:700;\" main_heading_font_size=\"desktop:32px;tablet_portrait:36px;mobile_landscape:28px;mobile:28px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway|variant:300\" sub_heading_style=\"font-weight:300;\" sub_heading_font_size=\"desktop:18px;mobile_landscape:15px;mobile:15px;\" main_heading_line_height=\"mobile_landscape:36px;mobile:36px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][testimonials des_testimonials_flex_direction_nav=\"no\" style=\"style2\" testimonials_cats=\"dark-text\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#101010\" css=\".vc_custom_1481569612907{padding-top: 60px !important;padding-bottom: 0px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\" arrow_color=\"#f7f7f7\" arrow_size=\"16\" dots=\"off\"][vc_single_image image=\"9896\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9898\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9895\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9872\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][vc_single_image image=\"9870\" img_size=\"full\" alignment=\"center\" css_animation=\"bottom-to-top\"][/ultimate_carousel][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 17:53:46', '2020-11-14 07:53:46', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0),
(445, 1, '2020-11-14 21:07:25', '2020-11-14 21:07:25', '', 'art3.jpg', '', 'inherit', 'closed', 'closed', '', 'art3-jpg', '', '', '2020-11-14 21:07:25', '2020-11-14 21:07:25', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/art3.jpg', 0, 'attachment', 'image/jpeg', 0),
(446, 1, '2020-11-14 21:07:25', '2020-11-14 21:07:25', '', 'art4.jpg', '', 'inherit', 'closed', 'closed', '', 'art4-jpg', '', '', '2020-11-14 21:07:25', '2020-11-14 21:07:25', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/art4.jpg', 0, 'attachment', 'image/jpeg', 0),
(447, 1, '2020-11-14 21:07:26', '2020-11-14 21:07:26', '', 'art5.jpg', '', 'inherit', 'closed', 'closed', '', 'art5-jpg', '', '', '2020-11-14 21:07:26', '2020-11-14 21:07:26', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/art5.jpg', 0, 'attachment', 'image/jpeg', 0),
(448, 1, '2020-11-14 21:07:27', '2020-11-14 21:07:27', '', 'art8.jpg', '', 'inherit', 'closed', 'closed', '', 'art8-jpg', '', '', '2020-11-14 21:07:27', '2020-11-14 21:07:27', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/art8.jpg', 0, 'attachment', 'image/jpeg', 0),
(449, 1, '2020-11-14 21:07:28', '2020-11-14 21:07:28', '', 'sunshinecover.jpg', '', 'inherit', 'closed', 'closed', '', 'sunshinecover-jpg', '', '', '2020-11-14 21:07:28', '2020-11-14 21:07:28', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/sunshinecover.jpg', 0, 'attachment', 'image/jpeg', 0),
(450, 1, '2020-11-14 21:07:29', '2020-11-14 21:07:29', '', 'sunrise.mp4', '', 'inherit', 'closed', 'closed', '', 'sunrise-mp4', '', '', '2020-11-14 21:07:29', '2020-11-14 21:07:29', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/sunrise.mp4', 0, 'attachment', '', 0),
(451, 1, '2020-11-14 21:07:29', '2020-11-14 21:07:29', '', 'art7.jpg', '', 'inherit', 'closed', 'closed', '', 'art7-jpg', '', '', '2020-11-14 21:07:29', '2020-11-14 21:07:29', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/revslider/art7.jpg', 0, 'attachment', 'image/jpeg', 0),
(452, 1, '2020-11-14 21:14:02', '2020-11-14 11:14:02', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]WE ARE ENGAGING FUTURES\r\n\r\nWE HELP CREATE YOUR PREFERRED FUTURES[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 21:14:02', '2020-11-14 11:14:02', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(453, 1, '2020-11-14 21:18:44', '2020-11-14 11:18:44', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES</p>\n<p>WE HELP CREATE YOUR PREFERRED FUTURES[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358<br />\n42-60 Albert Street<br />\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605325872781{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 21:18:44', '2020-11-14 11:18:44', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(454, 1, '2020-11-14 21:26:58', '2020-11-14 11:26:58', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES\r\n\r\nWE HELP CREATE YOUR PREFERRED FUTURES[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures, and through our Clients, the year 2050 Starts Today\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 21:26:58', '2020-11-14 11:26:58', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(455, 1, '2020-11-14 21:33:22', '2020-11-14 11:33:22', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES\r\n\r\nWE HELP CREATE YOUR PREFERRED FUTURES[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures, and through our Clients, the year 2050 Starts Today\"</blockquote>\r\n[/vc_column_text][rev_slider slidertitle=\"Classic Cars Evolution1\" alias=\"classic-cars-evolution1\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 21:33:22', '2020-11-14 11:33:22', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(456, 1, '2020-11-14 21:47:01', '2020-11-14 11:47:01', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES\r\n\r\nWE HELP CREATE YOUR PREFERRED FUTURES[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 Starts Today\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 21:47:01', '2020-11-14 11:47:01', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(457, 1, '2020-11-14 21:47:13', '2020-11-14 11:47:13', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES\r\n\r\nWE HELP CREATE YOUR PREFERRED FUTURES[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Parcel Collect 10099 67358\r\n42-60 Albert Street\r\nBRISBANE CITY QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 Starts Today\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 21:47:13', '2020-11-14 11:47:13', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(458, 1, '2020-11-14 22:03:40', '2020-11-14 12:03:40', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]WE ARE ENGAGING FUTURES</p>\n<p>WE CREATE THE PREFERRED FUTURE[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358</p>\n<p>42-60 Albert Street</p>\n<p>BRISBANE CITY</p>\n<p>QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<blockquote><p>&nbsp;</p>\n<p>\"We are Engaging Futures and through our Clients, the year 2050 Starts Today\"</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 22:03:40', '2020-11-14 12:03:40', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(459, 1, '2020-11-14 22:05:08', '2020-11-14 12:05:08', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]WE ARE ENGAGING FUTURES.</p>\n<p>WE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358</p>\n<p>42-60 Albert Street</p>\n<p>BRISBANE CITY</p>\n<p>QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<blockquote><p>&nbsp;</p>\n<p>\"We are Engaging Futures and through our Clients, the year 2050 Starts Today\"</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 22:05:08', '2020-11-14 12:05:08', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(460, 1, '2020-11-14 22:10:12', '2020-11-14 12:10:12', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.</p>\n<p>WE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358</p>\n<p>42-60 Albert Street</p>\n<p>BRISBANE CITY</p>\n<p>QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<blockquote><p>&nbsp;</p>\n<p>\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-14 22:10:12', '2020-11-14 12:10:12', '', 29, 'http://localhost:8888/wordpress/2020/11/14/29-revision-v1/', 0, 'revision', '', 0),
(461, 1, '2020-11-14 22:49:11', '2020-11-14 12:49:11', '', 'Screen Shot 2020-11-14 at 22.35.05', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-14-at-22-35-05', '', '', '2020-11-14 22:49:11', '2020-11-14 12:49:11', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-14-at-22.35.05.png', 0, 'attachment', 'image/png', 0),
(462, 1, '2020-11-14 22:49:37', '2020-11-14 12:49:37', '', 'Screen Shot 2020-11-14 at 22.47.29', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-14-at-22-47-29', '', '', '2020-11-14 22:49:37', '2020-11-14 12:49:37', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-14-at-22.47.29.png', 0, 'attachment', 'image/png', 0),
(463, 1, '2020-11-14 22:57:41', '2020-11-14 12:57:41', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^8909|url^http://treethemes.net/themes/maple/demo2/wp-content/uploads/sites/3/2016/12/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1483477610246{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Brand New Features\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Competently transform proactive internal or \"organic\".[/info_circle_item][info_circle_item info_title=\"Done Awesomely\" info_icon=\"Defaults-headphones\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Quicquam fratrum declivia gravitate. Nam coegit alto unda.[/info_circle_item][info_circle_item info_title=\"100% Mobile Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Pumero divino toto prima ensis. Cingebant uno pluvialibus.[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nitidis locum auroram dissaepserat ulla dextra rapidisque.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Phosfluorescently redefine plug-and-play best practices.[/info_circle_item][info_circle_item info_title=\"Ultimate Solution\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Nam coegit alto unda austro liberioris effigiem?[/info_circle_item][/info_circle][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Prospective functionalities for interactive commun generate economically sound infrastructures before process.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 22:57:41', '2020-11-14 12:57:41', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(464, 1, '2020-11-14 22:59:39', '2020-11-14 12:59:39', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^8909|url^http://treethemes.net/themes/maple/demo2/wp-content/uploads/sites/3/2016/12/01596.jpg|caption^null|alt^null|title^01596|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1483477610246{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Prospective functionalities for interactive commun generate economically sound infrastructures before process.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 22:59:39', '2020-11-14 12:59:39', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0),
(466, 1, '2020-11-14 23:04:02', '2020-11-14 13:04:02', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-14 23:04:02', '2020-11-14 13:04:02', '', 18, 'http://localhost:8888/wordpress/2020/11/14/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(467, 1, '2020-11-16 15:46:09', '2020-11-16 05:46:09', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:113px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:113px;\" desc_font_size=\"desktop:114px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:113px;\" desc_font_size=\"desktop:114px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-16 15:46:09', '2020-11-16 05:46:09', '', 24, 'http://localhost:8888/wordpress/2020/11/16/24-revision-v1/', 0, 'revision', '', 0),
(468, 1, '2020-11-16 15:54:17', '2020-11-16 05:54:17', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\r\n\r\n\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 15:54:17', '2020-11-16 05:54:17', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(469, 1, '2020-11-16 16:01:35', '2020-11-16 06:01:35', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"208\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 16:01:35', '2020-11-16 06:01:35', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0),
(470, 1, '2020-11-16 16:19:51', '2020-11-16 06:19:51', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"208\" img_size=\"large\" add_caption=\"yes\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 16:19:51', '2020-11-16 06:19:51', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(471, 1, '2020-11-16 16:21:18', '2020-11-16 06:21:18', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"208\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 16:21:18', '2020-11-16 06:21:18', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0),
(472, 1, '2020-11-16 16:32:26', '2020-11-16 06:32:26', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"208\" img_size=\"full\" alignment=\"center\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 16:32:26', '2020-11-16 06:32:26', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(473, 1, '2020-11-16 16:44:38', '2020-11-16 06:44:38', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WORLD PEACE, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_single_image image=\"208\" img_size=\"full\" alignment=\"center\"][vc_column_text]Photo above: Keynote and workshop by Dr. Colin Russo, Brisbane Primary Health</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][ultimate_carousel title_text_typography=\"\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 16:44:38', '2020-11-16 06:44:38', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0),
(474, 1, '2020-11-16 16:49:17', '2020-11-16 06:49:17', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_single_image image=\"208\" img_size=\"full\" alignment=\"center\"][vc_column_text]Photo above: Keynote and workshop by Dr. Colin Russo, Brisbane Primary Health\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][ultimate_carousel title_text_typography=\"\" slides_on_desk=\"3\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 16:49:17', '2020-11-16 06:49:17', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(475, 1, '2020-11-16 16:52:12', '2020-11-16 06:52:12', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]Photo above: Keynote and workshop by Dr. Colin Russo, Brisbane Primary Health</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_single_image image=\"208\" img_size=\"full\" alignment=\"center\"][vc_empty_space height=\"60px\"][ultimate_carousel slides_on_desk=\"3\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 16:52:12', '2020-11-16 06:52:12', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0),
(476, 1, '2020-11-16 16:54:27', '2020-11-16 06:54:27', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_single_image image=\"208\" img_size=\"full\" alignment=\"center\"][vc_column_text]Photo above: Keynote and workshop by Dr. Colin Russo, Brisbane Primary Health.[/vc_column_text][vc_empty_space height=\"60px\"][ultimate_carousel slides_on_desk=\"3\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 16:54:27', '2020-11-16 06:54:27', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(477, 1, '2020-11-16 17:02:41', '2020-11-16 07:02:41', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_single_image image=\"208\" img_size=\"full\" alignment=\"center\"][vc_column_text]Photo above: Keynote and workshop by Dr. Colin Russo, Brisbane Primary Health.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 17:02:41', '2020-11-16 07:02:41', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0),
(478, 1, '2020-11-16 17:06:55', '2020-11-16 07:06:55', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_single_image image=\"208\" img_size=\"full\" alignment=\"center\"][vc_column_text]Photo above: Keynote and workshop by Dr. Colin Russo, Brisbane Primary Health.[/vc_column_text][ult_range_slider title_typography=\"\" slider_data=\"%5B%7B%22slider_title%22%3A%22test%22%2C%22slider_desc%22%3A%22test%22%7D%2C%7B%22slider_title%22%3A%22test%22%2C%22slider_desc%22%3A%22test%22%7D%5D\" slider_color=\"#3bf7d1\" title_box_color=\"#ffffff\" desc_color=\"#444444\" title_padding=\"padding-top:15px;padding-right:15px;padding-bottom:15px;padding-left:15px;\" desc_padding=\"padding-top:35px;padding-right:35px;padding-bottom:35px;padding-left:35px;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:16px;\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1482265871241{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199728369{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199733334{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][ultimate_spacer height=\"0\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\" css=\".vc_custom_1497199737375{padding-right: 25px !important;padding-left: 25px !important;}\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column][vc_column css_animation=\"slideInUp\" width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 17:06:55', '2020-11-16 07:06:55', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(479, 1, '2020-11-16 18:29:13', '2020-11-16 08:29:13', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_column_text]Photo above: Keynote and workshop by Dr. Colin Russo, Brisbane Primary Health.[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_single_image image=\"208\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 18:29:13', '2020-11-16 08:29:13', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0),
(480, 1, '2020-11-16 18:47:42', '2020-11-16 08:47:42', '', 'Canberra Presentation', '', 'inherit', 'open', 'closed', '', 'canberra-presentation', '', '', '2020-11-16 18:47:42', '2020-11-16 08:47:42', '', 18, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Canberra-Presentation.jpg', 0, 'attachment', 'image/jpeg', 0),
(481, 1, '2020-11-16 18:52:05', '2020-11-16 08:52:05', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_media_grid grid_id=\"vc_gid:1605515462042-ca8fedee-d2eb-2\" include=\"480,208,216,210,207,206,289,201,212\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 18:52:05', '2020-11-16 08:52:05', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0),
(482, 1, '2020-11-16 18:54:26', '2020-11-16 08:54:26', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_media_grid grid_id=\"vc_gid:1605516790938-b03dcb79-2632-4\" include=\"480,208,216\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_media_grid grid_id=\"vc_gid:1605516808590-7b207132-8d1d-9\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 18:54:26', '2020-11-16 08:54:26', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(483, 1, '2020-11-16 18:57:33', '2020-11-16 08:57:33', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605516976113-1674269ae75730fb05804ef4b6adfc79-7\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605516976700-870945b3f213f5083c8c1942fdff8d47-2\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 18:57:33', '2020-11-16 08:57:33', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0),
(484, 1, '2020-11-16 19:06:19', '2020-11-16 09:06:19', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_media_grid grid_id=\"vc_gid:1605517365850-c70aa456-b8cb-0\" include=\"480,208,216\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605517365852-391240ba-19c4-3\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605517406106-842d4bc5-b4a9-4\" include=\"282,275,213\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 19:06:19', '2020-11-16 09:06:19', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0),
(485, 1, '2020-11-16 19:11:52', '2020-11-16 09:11:52', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605517693558-1040590b-06d6-10\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605517693561-32e7dd69-9c71-7\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 19:11:52', '2020-11-16 09:11:52', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(486, 1, '2020-11-16 19:15:26', '2020-11-16 09:15:26', '[vc_row][vc_column][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605517916389-31119c52-f530-6\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605517916392-593a68a9-2628-9\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-16 19:15:26', '2020-11-16 09:15:26', '', 18, 'http://localhost:8888/wordpress/2020/11/16/18-revision-v1/', 0, 'revision', '', 0),
(487, 1, '2020-11-16 19:27:07', '2020-11-16 09:27:07', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:133px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-16 19:27:07', '2020-11-16 09:27:07', '', 24, 'http://localhost:8888/wordpress/2020/11/16/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(488, 1, '2020-11-16 19:30:41', '2020-11-16 09:30:41', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities find technology solutions for people, or for organisations?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:133px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-16 19:30:41', '2020-11-16 09:30:41', '', 24, 'http://localhost:8888/wordpress/2020/11/16/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(489, 1, '2020-11-16 20:05:39', '2020-11-16 10:05:39', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" icon_style=\"circle\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What future for smart cities?\" block_title_back=\"Will smart cities make cities more efficient or fundamentally different?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:133px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-16 20:05:39', '2020-11-16 10:05:39', '', 24, 'http://localhost:8888/wordpress/2020/11/16/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(490, 1, '2020-11-16 20:09:56', '2020-11-16 10:09:56', '[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-16 20:09:56', '2020-11-16 10:09:56', '', 24, 'http://localhost:8888/wordpress/2020/11/16/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(491, 1, '2020-11-16 20:13:31', '2020-11-16 10:13:31', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Course Presenters - wow, these guys are good!\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-16 20:13:31', '2020-11-16 10:13:31', '', 24, 'http://localhost:8888/wordpress/2020/11/16/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(492, 1, '2020-11-16 20:19:31', '2020-11-16 10:19:31', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters \" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" ult_param_heading=\"\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-16 20:19:31', '2020-11-16 10:19:31', '', 24, 'http://localhost:8888/wordpress/2020/11/16/24-revision-v1/', 0, 'revision', '', 0),
(493, 1, '2020-11-20 18:31:22', '2020-11-20 08:31:22', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605861022512-b1612a18-8e24-7\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Prospective functionalities for interactive commun generate economically sound infrastructures before process.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-autosave-v1', '', '', '2020-11-20 18:31:22', '2020-11-20 08:31:22', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-autosave-v1/', 0, 'revision', '', 0),
(494, 1, '2020-11-16 20:24:50', '2020-11-16 10:24:50', '[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" grid_id=\"vc_gid:1605522168507-f62b16b8-e502-4\"][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 20:24:50', '2020-11-16 10:24:50', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(495, 1, '2020-11-16 20:35:36', '2020-11-16 10:35:36', ' ', '', '', 'publish', 'closed', 'closed', '', '495', '', '', '2020-11-16 20:35:36', '2020-11-16 10:35:36', '', 0, 'http://localhost:8888/wordpress/?p=495', 1, 'nav_menu_item', '', 0),
(496, 1, '2020-11-16 20:35:36', '2020-11-16 10:35:36', ' ', '', '', 'publish', 'closed', 'closed', '', '496', '', '', '2020-11-16 20:35:36', '2020-11-16 10:35:36', '', 0, 'http://localhost:8888/wordpress/?p=496', 2, 'nav_menu_item', '', 0),
(497, 1, '2020-11-16 20:35:36', '2020-11-16 10:35:36', ' ', '', '', 'publish', 'closed', 'closed', '', '497', '', '', '2020-11-16 20:35:36', '2020-11-16 10:35:36', '', 0, 'http://localhost:8888/wordpress/?p=497', 3, 'nav_menu_item', '', 0),
(498, 1, '2020-11-16 20:35:36', '2020-11-16 10:35:36', ' ', '', '', 'publish', 'closed', 'closed', '', '498', '', '', '2020-11-16 20:35:36', '2020-11-16 10:35:36', '', 0, 'http://localhost:8888/wordpress/?p=498', 4, 'nav_menu_item', '', 0),
(499, 1, '2020-11-16 20:47:48', '2020-11-16 10:47:48', '', 'dan-gold-4_jhDO54BYg-unsplash', '', 'inherit', 'open', 'closed', '', 'dan-gold-4_jhdo54byg-unsplash', '', '', '2020-11-16 20:47:48', '2020-11-16 10:47:48', '', 101, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/dan-gold-4_jhDO54BYg-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(500, 1, '2020-11-16 20:48:04', '2020-11-16 10:48:04', '', 'alexander-redl-d3bYmnZ0ank-unsplash', '', 'inherit', 'open', 'closed', '', 'alexander-redl-d3bymnz0ank-unsplash', '', '', '2020-11-16 20:48:04', '2020-11-16 10:48:04', '', 101, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/alexander-redl-d3bYmnZ0ank-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(501, 1, '2020-11-16 20:48:11', '2020-11-16 10:48:11', '', 'alexander-mils-nG4ZimMIO_k-unsplash', '', 'inherit', 'open', 'closed', '', 'alexander-mils-ng4zimmio_k-unsplash', '', '', '2020-11-16 20:48:11', '2020-11-16 10:48:11', '', 101, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/alexander-mils-nG4ZimMIO_k-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(502, 1, '2020-11-16 20:48:24', '2020-11-16 10:48:24', '', 'fezbot2000-78T99kbcp_4-unsplash', '', 'inherit', 'open', 'closed', '', 'fezbot2000-78t99kbcp_4-unsplash', '', '', '2020-11-16 20:48:24', '2020-11-16 10:48:24', '', 101, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/fezbot2000-78T99kbcp_4-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(503, 1, '2020-11-16 20:48:39', '2020-11-16 10:48:39', '', 'heather-ford-Ug7kk0kThLk-unsplash', '', 'inherit', 'open', 'closed', '', 'heather-ford-ug7kk0kthlk-unsplash', '', '', '2020-11-16 20:48:39', '2020-11-16 10:48:39', '', 101, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/heather-ford-Ug7kk0kThLk-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(504, 1, '2020-11-16 20:48:55', '2020-11-16 10:48:55', '', 'jesper-aggergaard-CEM52sAHR80-unsplash', '', 'inherit', 'open', 'closed', '', 'jesper-aggergaard-cem52sahr80-unsplash', '', '', '2020-11-16 20:48:55', '2020-11-16 10:48:55', '', 101, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/jesper-aggergaard-CEM52sAHR80-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(505, 1, '2020-11-16 20:49:10', '2020-11-16 10:49:10', '', 'luke-chesser-rCOWMC8qf8A-unsplash', '', 'inherit', 'open', 'closed', '', 'luke-chesser-rcowmc8qf8a-unsplash', '', '', '2020-11-16 20:49:10', '2020-11-16 10:49:10', '', 101, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/luke-chesser-rCOWMC8qf8A-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(506, 1, '2020-11-16 20:49:23', '2020-11-16 10:49:23', '', 'maid-milinkic-yoLmC2t6y3s-unsplash', '', 'inherit', 'open', 'closed', '', 'maid-milinkic-yolmc2t6y3s-unsplash', '', '', '2020-11-16 20:49:23', '2020-11-16 10:49:23', '', 101, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/maid-milinkic-yoLmC2t6y3s-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(507, 1, '2020-11-16 20:49:31', '2020-11-16 10:49:31', '', 'national-cancer-institute-701-FJcjLAQ-unsplash', '', 'inherit', 'open', 'closed', '', 'national-cancer-institute-701-fjcjlaq-unsplash', '', '', '2020-11-16 20:49:31', '2020-11-16 10:49:31', '', 101, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/national-cancer-institute-701-FJcjLAQ-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(508, 1, '2020-11-16 21:07:39', '2020-11-16 11:07:39', '', 'Futures of Australian Healthcare', '', 'publish', 'closed', 'closed', '', 'futures-of-australian-healthcare', '', '', '2020-11-16 21:07:39', '2020-11-16 11:07:39', '', 0, 'http://localhost:8888/wordpress/?post_type=vc_grid_item&#038;p=508', 0, 'vc_grid_item', '', 0),
(509, 1, '2020-11-16 21:08:42', '2020-11-16 11:08:42', '<!-- wp:paragraph -->\r\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\r\n<p>&nbsp;</p>\r\n<p>Test</p>\r\n<!-- /wp:paragraph -->', 'Hello world!', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2020-11-16 21:08:42', '2020-11-16 11:08:42', '', 1, 'http://localhost:8888/wordpress/2020/11/16/1-revision-v1/', 0, 'revision', '', 0),
(510, 1, '2020-11-16 21:11:54', '2020-11-16 11:11:54', '<!-- wp:paragraph -->\r\n<div class=\"yF0IC\" data-hook=\"post-description\">\r\n<article class=\"blog-post-page-font\">\r\n<div class=\"post-content__body\">\r\n<div class=\"lV_uZ _1LHlu _1ltva\" data-rce-version=\"8.3.0\">\r\n<div class=\"kcuBq _1PkHV blog-post-page-font _3f8WX uatYj\" dir=\"ltr\">\r\n<div class=\"kaqlz _1FQ9t blog-post-page-font zJfAe\">\r\n<p id=\"viewer-e059b\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">“Our Future”, a year-long consultation process about a long-term vision for the City of Geelong, has begun. City of Greater Geelong CEO Kelvin Spiller engaged the first UNESCO chair of futures studies, Sohail Inayatullah, to kick-start the project in September.</span></p>\r\n<p id=\"viewer-5d00k\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Kelvin Spiller, who has produced outcomes for city visioning initiatives on the Sunshine Coast, describes Our Future as a process of “presenting new perceptions, future directions, identifying used futures and new scenarios”. In a rapidly changing world, citizens use scenario thinking to gain insights into how cities can create alternative possibilities and solutions.</span></p>\r\n<p id=\"viewer-4fmgq\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Read the full article by Dr Colin Russo here:</span></p>\r\n<p id=\"viewer-amu12\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">https://theconversation.com/from-the-gold-coast-to-geelong-how-cities-are-shaping-visions-of-their-futures-69055</span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</article>\r\n</div>\r\n<div class=\"_1yEvn\">\r\n<div class=\"_3YxRQ\" data-hook=\"post-main-actions-desktop\">\r\n<div class=\"ygPzE blog-separator-background-color\"> </div>\r\n<div class=\"_29Euw MQFQm\">\r\n<div id=\"post-social-actions\" class=\"_1nBO7 blog-text-color\" tabindex=\"-1\"> </div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- /wp:paragraph -->', 'Hello world!', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2020-11-16 21:11:54', '2020-11-16 11:11:54', '', 1, 'http://localhost:8888/wordpress/2020/11/16/1-revision-v1/', 0, 'revision', '', 0),
(511, 1, '2020-11-16 21:17:27', '2020-11-16 11:17:27', '<!-- wp:paragraph -->\r\n<div class=\"yF0IC\" data-hook=\"post-description\">\r\n<article class=\"blog-post-page-font\">\r\n<div class=\"post-content__body\">\r\n<div class=\"lV_uZ _1LHlu _1ltva\" data-rce-version=\"8.3.0\">\r\n<div class=\"kcuBq _1PkHV blog-post-page-font _3f8WX uatYj\" dir=\"ltr\">\r\n<div class=\"kaqlz _1FQ9t blog-post-page-font zJfAe\">\r\n<p id=\"viewer-e059b\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">“Our Future”, a year-long consultation process about a long-term vision for the City of Geelong, has begun. City of Greater Geelong CEO Kelvin Spiller engaged the first UNESCO chair of futures studies, Sohail Inayatullah, to kick-start the project in September.</span></p>\r\n<p id=\"viewer-5d00k\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Kelvin Spiller, who has produced outcomes for city visioning initiatives on the Sunshine Coast, describes Our Future as a process of “presenting new perceptions, future directions, identifying used futures and new scenarios”. In a rapidly changing world, citizens use scenario thinking to gain insights into how cities can create alternative possibilities and solutions.</span></p>\r\n<p id=\"viewer-4fmgq\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Read the full article by Dr Colin Russo here:</span></p>\r\n<p id=\"viewer-amu12\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">https://theconversation.com/from-the-gold-coast-to-geelong-how-cities-are-shaping-visions-of-their-futures-69055</span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</article>\r\n</div>\r\n<div class=\"_1yEvn\">\r\n<div class=\"_3YxRQ\" data-hook=\"post-main-actions-desktop\">\r\n<div class=\"ygPzE blog-separator-background-color\"> </div>\r\n<div class=\"_29Euw MQFQm\">\r\n<div id=\"post-social-actions\" class=\"_1nBO7 blog-text-color\" tabindex=\"-1\"> </div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- /wp:paragraph -->', 'From the Gold Coast to Geelong: How cities are shaping visions of their futures', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2020-11-16 21:17:27', '2020-11-16 11:17:27', '', 1, 'http://localhost:8888/wordpress/2020/11/16/1-revision-v1/', 0, 'revision', '', 0),
(512, 1, '2020-11-16 21:17:48', '2020-11-16 11:17:48', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" grid_id=\"vc_gid:1605525247406-d800e5ee26199e53df5274a9e3fa84a8-3\"][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 21:17:48', '2020-11-16 11:17:48', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(513, 1, '2020-11-16 21:19:46', '2020-11-16 11:19:46', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" grid_id=\"vc_gid:1605525521991-2dc2cb8804dc423e49cc12fed83e1e7b-4\"][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" grid_id=\"vc_gid:1605525578682-ee7993f3-1639-4\"][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" grid_id=\"vc_gid:1605525574379-c4e4ca35-bdab-10\"][ultimate_spacer height=\"10\"][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 21:19:46', '2020-11-16 11:19:46', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(514, 1, '2020-11-16 21:19:51', '2020-11-16 11:19:51', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" grid_id=\"vc_gid:1605525247406-d800e5ee26199e53df5274a9e3fa84a8-3\"][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 21:19:51', '2020-11-16 11:19:51', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(515, 1, '2020-11-16 21:21:17', '2020-11-16 11:21:17', '[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" grid_id=\"vc_gid:1605525661277-d25610e7-fc52-8\"][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 21:21:17', '2020-11-16 11:21:17', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(516, 1, '2020-11-16 21:22:48', '2020-11-16 11:22:48', '[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" grid_id=\"vc_gid:1605525681621-7be9a5a6-f0d7-8\"][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 21:22:48', '2020-11-16 11:22:48', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(517, 1, '2020-11-16 21:27:04', '2020-11-16 11:27:04', '<!-- wp:paragraph -->\n<div class=\"yF0IC\" data-hook=\"post-description\">\n<article class=\"blog-post-page-font\">\n<div class=\"post-content__body\">\n<div class=\"lV_uZ _1LHlu _1ltva\" data-rce-version=\"8.3.0\">\n<div class=\"kcuBq _1PkHV blog-post-page-font _3f8WX uatYj\" dir=\"ltr\">\n<div class=\"kaqlz _1FQ9t blog-post-page-font zJfAe\">\n<div class=\"lead-text\">\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Dry heat and drought in one season and flooding rains in another is part and parcel of our global food futures to 2050. Also on the radar is a tidal wave of change caused by global warming, population growth, digital futures and deep systemic issues in food futures to 2050 and beyond. These issues are influencing food security, scarcity and trends like biotechnology and precision agriculture in the food industry.</span></p>\n</div>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">It is argued in this article that bringing sustainability to our fluctuating food futures requires the workshopping of holistic problems and opportunities across multiple emerging issues to align current practices with emerging challenges.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">The method used in writing this article is Emerging Issues Analysis (EIA) by Graham Molitor. It is one of the Futures Thinking tools and methods from Professor Sohail Inayatullah’s Six Pillars of Futures Studies (2008).</span></p>\n<p>&nbsp;</p>\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Global emerging issues on the demand and supply of food</span></strong></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Emerging issues may make huge changes to food futures, but people really aren’t aware of their presence. The consequence of the issue may seem a long way off in the future, yet may be building in the background with no statistics pervasive in the popular media.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Statistics about demand for food are always being monitored, by authorities interested in the consumer price index, i.e., when the price of food changes and it has a small impact on inflation, but this is only news for some people. Statistics are also monitored closely by food suppliers (growers, sellers, packaging companies, restaurateurs and food outlets, regulators, health providers and educators) who flex to the desires of consumers.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">These issues fit well with </span><a href=\"https://opus.lib.uts.edu.au/bitstream/10453/51643/4/9BACB453-E04F-4BC2-B197-ADD80FF8D36E%20am.pdf\">research</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> theory stating that socio-economic context is linked to environmental futurity – </span><span lang=\"EN-US\" xml:lang=\"EN-US\">suppliers of food are impacted by global warming but also by population growth. By 2050 a population of 9 billion will mean farmers have to feed 310 people per farmer - almost twice as many people than they did just a decade ago.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">At the same time as global populations are growing, farmers are currently experiencing some of the warmest and unseasonably wet and drier months on record. In Queensland, Australia temperatures are </span><a href=\"http://www.climatekelpie.com.au/see-forecasts/australias-future-climate/queenslands-future-climate\">expected</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to rise by 1 degree by 2030 and by up to 4 degrees by 2070 under a high emissions scenario. Further to this problem, </span><a href=\"http://www.bom.gov.au/state-of-the-climate/State-of-the-Climate-2016.pdf\">extreme heat events</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> (the number of extremely hot days each year) have been increasing across the Australian continent, from none in 1910 to 28 every year in 2017.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Fluctuating temperatures influence rainfall patterns. In 2016 France experienced its driest July and August on </span><a href=\"http://library.wmo.int/\">record</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and Switzerland had its driest December on record, while parts of Eastern Australia had their wettest month on record in September. After the driest eight months on record from September 2015 to April 2016, Tasmania in Australia, had its wettest May to December on record resulting in record winter grain production 49% above that of the winter before. In 2014 Brazil had its worst drought in 85 years, and it is home to more seed plants than any other country in the world.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">While global warming is an issue and a trend in itself, we don’t often think about its impact on </span><a href=\"https://www.youtube.com/watch?v=2MIlFNQniYI&amp;feature=youtu.be\">ocean warming and acidif</a><span lang=\"EN-US\" xml:lang=\"EN-US\">ication.</span><span lang=\"EN-US\" xml:lang=\"EN-US\"> Anthropogenic change is putting pressure on the supply of food from land but also from our oceans.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">There are </span><a href=\"http://globalprioritiesproject.org/wp-content/uploads/2016/04/Global-Catastrophic-Risk-Annual-Report-2016-FINAL.pdf\">global risks</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to these emerging issues, such as </span><span lang=\"EN-US\" xml:lang=\"EN-US\">food security, seed protection and development of alternative food sources.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Who is most at risk of going hungry? According to the United Nations, today </span><a href=\"http://publications.wfp.org/2017/mapping-hunger/index.html?_ga=2.119751560.1207568174.1507595817-1250403088.1507595817\">four countries are fighting famine</a><span lang=\"EN-US\" xml:lang=\"EN-US\">: Yemen, Somalia, Nigeria and South Sudan. The UN has 17 Sustainability Development Goals. Sustainability is the capability to advance long-term multi-faceted quality of life. There are numerous </span><a href=\"http://www.un.org/sustainabledevelopment/hunger/\">hunger issues and food security</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> issues</span><span lang=\"EN-US\" xml:lang=\"EN-US\">. Hunger issues identified by the UN include:</span></p>\n<ul>\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Globally, one in nine people in the world today (795 million) are undernourished</span></li>\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">The vast majority of the world’s hungry people live in developing countries, where 12.9 per cent of the population is undernourished.</span></li>\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Asia is the continent with the most hungry people – two thirds of the total. The percentage in southern Asia has fallen in recent years but in western Asia it has increased slightly.</span></li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Trends that influence food futures</span></strong></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Trends are a line of development that occur over a period of time. </span><span lang=\"EN-US\" xml:lang=\"EN-US\">A number of foods have become fashionable in 2017, like Thai styled roll-up ice-cream, veggie burgers, seaweed, mixed mocktails. New practices have also emerged, such as healthy dinners ordered via virtual reality restaurants and Google drones delivering foods, e.g., around US campuses.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Consumer choice is now being driven by concerns for personal health, ethical growers, taste and home cooking as popularized by a host of reality cooking television shows. This trend, for example, is influencing the product lines of the </span><a href=\"http://brandfinance.com/images/upload/brand_finance_food_and_beverage_report_locked.pdf\">world’s most valuable food brand</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> Nestle, who are now adding healthier food to their product lines.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Nestle is losing billions of dollars because of the trend and is now transforming its products to align to health food futures. The reason for this trend can be found in a 2016 </span><a href=\"http://www.prnewswire.com/news-releases/national-survey-taps-over-1700-dietitians-to-predict-top-2017-food-trends-300376374.html\">survey of 1,700 US dietitians</a><span lang=\"EN-US\" xml:lang=\"EN-US\">,</span><span lang=\"EN-US\" xml:lang=\"EN-US\"> that shows 49% of registered dietitians attribute the change to “mindfulness” eating where consumers will choose health foods over diets – why? Consumers are now better connected to the recommendations of registered dietitians through technology: fit-bits, point of sale apps and social media devices.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Technology trends such as biotechnology continue to offer resistance to viruses and increases in the shelf life of food which decreases food waste e.g. </span><a href=\"http://www.sciencedirect.com/science/article/pii/S0734975014001931\">a new generation of genome editing tools</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> is being developed for plants to help speed up gene discovery and trait development to facilitate both forward and reverse genetics.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">A pervasive technological trend is precision agriculture which creates specific strategies for each field of crops by using drones to monitor crop health, quadcopters to measure the growth of crops, apps to model data, </span><a href=\"http://www.abc.net.au/news/2016-02-11/precision-agriculture/7162914\">lasers</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to sense plant health to match plants to fertilizers and pesticides, and artificial intelligence to match plants to particular soil types. Computers aboard drones will also use the images with algorithms to </span><a href=\"https://www.kaggle.com/c/inaturalist-challenge-at-fgvc-2017\">recognise differences between plant and animal species</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></p>\n<p>&nbsp;</p>\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Solutions for a more sustainable future of food</span></strong></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Over time, trends can drive problems that require solutions. A range of global solutions are provided below.</span></p>\n<ul>\n<li><a href=\"http://unesdoc.unesco.org/images/0024/002468/246887E.pdf\">Systemic change</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> is recommended because of the interlinkages between consumer demand, product supply lifecycles and the environment – as technology-assisted populations increase from 6 billion to 9 billion, global incomes are increasing, further disturbing ecosystems, increasing energy use and expanding global industry, while water is in decline.</span></li>\n<li><a href=\"https://www.brisbanetimes.com.au/national/queensland/queensland-remains-australias-biggest-greenhouse-gas-emitter-20170711-gx951t.html\">Reduce greenhouse gas emissions</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> via development of carbon sinks, transitioning to electric vehicles, and by de-carbonising the energy sector, with a transitioning to solar and other renewables.</span></li>\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Use specialist </span><a href=\"http://www.gulf-times.com/story/565285/Dutch-firms-offer-solutions-for-Qatar-food-securit\">greenhouse techniques</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to provide stable climates for crops.</span></li>\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Understand the role of fair, equitable and sustainable food practices and trade in contributing to </span><a href=\"http://brandfinance.com/images/upload/brand_finance_food_and_beverage_report_locked.pdf\">the full food brand value chain</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> including links between marketing investment, brand tracking data, stakeholder behaviour and business value.</span></li>\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Protect food sources and plants on </span><a href=\"https://stateoftheworldsplants.com/2016/report/sotwp_2016.pdf\">the endangered list</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and threatened foods such as </span><a href=\"https://www.theguardian.com/environment/2017/sep/26/chips-chocolate-and-coffee-our-food-crops-face-mass-extinction-too\">chocolate</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, honey, </span><a href=\"http://www.bbc.co.uk/news/resources/idt-fa38cb91-bdc0-4229-8cae-1d5c3b447337\">coffee</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and peanut paste, and protect wild food sources not currently gene banked e.g. banana, aubergine and sorghum. A most important preservation and adaptation strategy is biodiversity – variety is the spice of life. This is because predicting temperatures for the planting of a particular crop is unwise when </span><a href=\"https://thefern.org/ag_insider/syrian-seeds-shake-europes-plant-patent-regime/\">a range of crops</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> can self-select for changes in climate.</span></li>\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Support food-related targets of the </span><a href=\"https://web.archive.org/web/20060223053428/http:/www.biodiv.org:80/doc/decisions/COP-06-dec-en.pdf\">Global Strategy for Plant Conservation</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to conserve 70% of the genetic diversity of crops and associated indigenous and local knowledge, and to halt the decline of resources and knowledge sustaining livelihoods, food security and health. In sub-Saharan Africa, studies showed that changes are needed by 2050 to prevent areas growing maize, bananas and beans from becoming unviable, through, for example, </span><a href=\"https://www.bioversityinternational.org/fileadmin/_migrated/uploads/tx_news/Participatory_plant_breeding_to_promote_Farmers__Rights_1254.pdf\">participatory plant breeding</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></li>\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Identify </span><a href=\"https://stateoftheworldsplants.com/2016/climate-change.html\">which regions are more sensitive</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to climatic drivers than others, and reverse the effects of climate change overall, but especially in arid regions.</span></li>\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Eliminate food waste in the post-harvest supply chain, as more than </span><a href=\"http://www.eco-business.com/news/fixing-food-loss-with-disruptive-tech/\">one-third of food waste occurs before it reaches supermarket shelves</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></li>\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Link growers to food technologists and tech experts who can create apps and devices that support ethical choices, so that consumers know </span><a href=\"http://www.nationalgeographic.com.au/australia/whats-the-real-price-of-your-groceries.aspx\">the real price of their groceries</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Going Forward</span></strong></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Advances in food technology are tremendously important to beating Malthusian scenarios where populations grow faster than food can be produced. In fact, everyone can </span><a href=\"http://www.un.org/sustainabledevelopment/takeaction/\">take action</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to help transform our food futures – whether it’s from your couch, at home, or outside the house, taking care of your right to elect appropriate leaders, or buying locally and buying smart, or even planting locally and learning about endangered plants to save them from becoming</span> <a href=\"http://www.press.uchicago.edu/books/excerpt/2015/Jordan_Edible_Memory.html\">heirlooms</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> of the past.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Even with advanced equipment, life cycles, and systems, consumers and stakeholders cannot be connected to humane, sustainable futures without foresight and strategic direction. Growers and stakeholders struggle to make their industries sustainable </span><a href=\"https://www.technologyreview.com/s/601935/six-ways-drones-are-revolutionizing-agriculture/\">using AI in agricultural settings</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to automate plant and soil solutions because of drone safety, privacy issues and insurance questions that policy makers must grapple with. Systemic cooperation across boundaries is needed to facilitate outcomes where </span><a href=\"https://www.technologyreview.com/s/601935/six-ways-drones-are-revolutionizing-agriculture/\">AI in the food industry</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> offers new hope to a changing planet.</span></p>\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">The old story is of farmers providing the food basket to feed the global village. The new story is of the global village becoming sustainability farmers.</span></p>\n<p>&nbsp;</p>\n<p><strong><em><span lang=\"EN-US\" xml:lang=\"EN-US\">Dr Colin Russo</span></em></strong><strong><em><span lang=\"EN-US\" xml:lang=\"EN-US\"> is an Australian futurist, facilitator, award-winning futures author and award-winning engagement expert. Dr Russo has worked for the Queensland Department of Environment and Department of Mines and Energy and for the City of Gold Coast. He worked for Director General’s and CEO’s Offices and continues to work with executive and policy staff and their stakeholders.</span></em></strong></p>\n<p><strong><em><span lang=\"EN-US\" xml:lang=\"EN-US\">From 2015 Dr Russo has worked as Managing Director of Engaging Futures, a consultancy delivering futures workshops for executives and staff interested in learning about and working on their futures thinking and action learning projects. Most recently, Dr Russo has presented in the USA, Taiwan and Australia. From 2015 he has been a futurist facilitator of 1-3 day futures workshops, panels, forums and strategy developments for State and Local governments and for corporations.</span></em></strong></p>\n</div>\n</div>\n</div>\n</div>\n</article>\n</div>\n<div class=\"_1yEvn\">\n<div class=\"_3YxRQ\" data-hook=\"post-main-actions-desktop\">\n<div class=\"ygPzE blog-separator-background-color\"> </div>\n<div class=\"_29Euw MQFQm\">\n<div id=\"post-social-actions\" class=\"_1nBO7 blog-text-color\" tabindex=\"-1\"> </div>\n</div>\n</div>\n</div>\n<!-- /wp:paragraph -->', 'The Future of Food - Who Will Be Hungry?', '', 'inherit', 'closed', 'closed', '', '1-autosave-v1', '', '', '2020-11-16 21:27:04', '2020-11-16 11:27:04', '', 1, 'http://localhost:8888/wordpress/2020/11/16/1-autosave-v1/', 0, 'revision', '', 0),
(518, 1, '2020-11-16 21:24:59', '2020-11-16 11:24:59', '<!-- wp:paragraph -->\r\n<div class=\"yF0IC\" data-hook=\"post-description\">\r\n<article class=\"blog-post-page-font\">\r\n<div class=\"post-content__body\">\r\n<div class=\"lV_uZ _1LHlu _1ltva\" data-rce-version=\"8.3.0\">\r\n<div class=\"kcuBq _1PkHV blog-post-page-font _3f8WX uatYj\" dir=\"ltr\">\r\n<div class=\"kaqlz _1FQ9t blog-post-page-font zJfAe\">\r\n<p id=\"viewer-9akf3\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Dry heat and drought in one season and flooding rains in another is part and parcel of our global food futures to 2050. Also on the radar is a tidal wave of change caused by global warming, population growth, digital futures and deep systemic issues in food futures to 2050 and beyond. These issues are influencing food security, scarcity and trends like biotechnology and precision agriculture in the food industry. It is argued in this article, that bringing sustainability to our fluctuating food futures requires the workshopping of holistic problems and opportunities across multiple emerging issues to align current practices with emerging challenges.</span></p>\r\n<p id=\"viewer-af493\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The method used in writing this article is Emerging Issues Analysis (EIA) by Graham Molitor. It is one of the Futures Thinking tools and methods from Professor Sohail Inayatullah’s Six Pillars of Futures Studies (2008). I work with Professor Inayatullah, UNESCO Chair of Futures Studies while conducting futures workshops on the futures of cities, disability, health and wellbeing and other topics. </span></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</article>\r\n</div>\r\n<div class=\"_1yEvn\">\r\n<div class=\"_3YxRQ\" data-hook=\"post-main-actions-desktop\">\r\n<div class=\"ygPzE blog-separator-background-color\"> </div>\r\n<div class=\"_29Euw MQFQm\">\r\n<div id=\"post-social-actions\" class=\"_1nBO7 blog-text-color\" tabindex=\"-1\"> </div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- /wp:paragraph -->', 'The Future of Food - Who Will Be Hungry?', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2020-11-16 21:24:59', '2020-11-16 11:24:59', '', 1, 'http://localhost:8888/wordpress/2020/11/16/1-revision-v1/', 0, 'revision', '', 0),
(519, 1, '2020-11-16 21:27:30', '2020-11-16 11:27:30', '<!-- wp:paragraph -->\r\n<div class=\"yF0IC\" data-hook=\"post-description\">\r\n<article class=\"blog-post-page-font\">\r\n<div class=\"post-content__body\">\r\n<div class=\"lV_uZ _1LHlu _1ltva\" data-rce-version=\"8.3.0\">\r\n<div class=\"kcuBq _1PkHV blog-post-page-font _3f8WX uatYj\" dir=\"ltr\">\r\n<div class=\"kaqlz _1FQ9t blog-post-page-font zJfAe\">\r\n<div class=\"lead-text\">\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Dry heat and drought in one season and flooding rains in another is part and parcel of our global food futures to 2050. Also on the radar is a tidal wave of change caused by global warming, population growth, digital futures and deep systemic issues in food futures to 2050 and beyond. These issues are influencing food security, scarcity and trends like biotechnology and precision agriculture in the food industry.</span></p>\r\n</div>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">It is argued in this article that bringing sustainability to our fluctuating food futures requires the workshopping of holistic problems and opportunities across multiple emerging issues to align current practices with emerging challenges.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">The method used in writing this article is Emerging Issues Analysis (EIA) by Graham Molitor. It is one of the Futures Thinking tools and methods from Professor Sohail Inayatullah’s Six Pillars of Futures Studies (2008).</span></p>\r\n<p>&nbsp;</p>\r\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Global emerging issues on the demand and supply of food</span></strong></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Emerging issues may make huge changes to food futures, but people really aren’t aware of their presence. The consequence of the issue may seem a long way off in the future, yet may be building in the background with no statistics pervasive in the popular media.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Statistics about demand for food are always being monitored, by authorities interested in the consumer price index, i.e., when the price of food changes and it has a small impact on inflation, but this is only news for some people. Statistics are also monitored closely by food suppliers (growers, sellers, packaging companies, restaurateurs and food outlets, regulators, health providers and educators) who flex to the desires of consumers.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">These issues fit well with </span><a href=\"https://opus.lib.uts.edu.au/bitstream/10453/51643/4/9BACB453-E04F-4BC2-B197-ADD80FF8D36E%20am.pdf\">research</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> theory stating that socio-economic context is linked to environmental futurity – </span><span lang=\"EN-US\" xml:lang=\"EN-US\">suppliers of food are impacted by global warming but also by population growth. By 2050 a population of 9 billion will mean farmers have to feed 310 people per farmer - almost twice as many people than they did just a decade ago.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">At the same time as global populations are growing, farmers are currently experiencing some of the warmest and unseasonably wet and drier months on record. In Queensland, Australia temperatures are </span><a href=\"http://www.climatekelpie.com.au/see-forecasts/australias-future-climate/queenslands-future-climate\">expected</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to rise by 1 degree by 2030 and by up to 4 degrees by 2070 under a high emissions scenario. Further to this problem, </span><a href=\"http://www.bom.gov.au/state-of-the-climate/State-of-the-Climate-2016.pdf\">extreme heat events</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> (the number of extremely hot days each year) have been increasing across the Australian continent, from none in 1910 to 28 every year in 2017.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Fluctuating temperatures influence rainfall patterns. In 2016 France experienced its driest July and August on </span><a href=\"http://library.wmo.int/\">record</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and Switzerland had its driest December on record, while parts of Eastern Australia had their wettest month on record in September. After the driest eight months on record from September 2015 to April 2016, Tasmania in Australia, had its wettest May to December on record resulting in record winter grain production 49% above that of the winter before. In 2014 Brazil had its worst drought in 85 years, and it is home to more seed plants than any other country in the world.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">While global warming is an issue and a trend in itself, we don’t often think about its impact on </span><a href=\"https://www.youtube.com/watch?v=2MIlFNQniYI&amp;feature=youtu.be\">ocean warming and acidif</a><span lang=\"EN-US\" xml:lang=\"EN-US\">ication.</span><span lang=\"EN-US\" xml:lang=\"EN-US\"> Anthropogenic change is putting pressure on the supply of food from land but also from our oceans.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">There are </span><a href=\"http://globalprioritiesproject.org/wp-content/uploads/2016/04/Global-Catastrophic-Risk-Annual-Report-2016-FINAL.pdf\">global risks</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to these emerging issues, such as </span><span lang=\"EN-US\" xml:lang=\"EN-US\">food security, seed protection and development of alternative food sources.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Who is most at risk of going hungry? According to the United Nations, today </span><a href=\"http://publications.wfp.org/2017/mapping-hunger/index.html?_ga=2.119751560.1207568174.1507595817-1250403088.1507595817\">four countries are fighting famine</a><span lang=\"EN-US\" xml:lang=\"EN-US\">: Yemen, Somalia, Nigeria and South Sudan. The UN has 17 Sustainability Development Goals. Sustainability is the capability to advance long-term multi-faceted quality of life. There are numerous </span><a href=\"http://www.un.org/sustainabledevelopment/hunger/\">hunger issues and food security</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> issues</span><span lang=\"EN-US\" xml:lang=\"EN-US\">. Hunger issues identified by the UN include:</span></p>\r\n<ul>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Globally, one in nine people in the world today (795 million) are undernourished</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">The vast majority of the world’s hungry people live in developing countries, where 12.9 per cent of the population is undernourished.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Asia is the continent with the most hungry people – two thirds of the total. The percentage in southern Asia has fallen in recent years but in western Asia it has increased slightly.</span></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Trends that influence food futures</span></strong></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Trends are a line of development that occur over a period of time. </span><span lang=\"EN-US\" xml:lang=\"EN-US\">A number of foods have become fashionable in 2017, like Thai styled roll-up ice-cream, veggie burgers, seaweed, mixed mocktails. New practices have also emerged, such as healthy dinners ordered via virtual reality restaurants and Google drones delivering foods, e.g., around US campuses.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Consumer choice is now being driven by concerns for personal health, ethical growers, taste and home cooking as popularized by a host of reality cooking television shows. This trend, for example, is influencing the product lines of the </span><a href=\"http://brandfinance.com/images/upload/brand_finance_food_and_beverage_report_locked.pdf\">world’s most valuable food brand</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> Nestle, who are now adding healthier food to their product lines.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Nestle is losing billions of dollars because of the trend and is now transforming its products to align to health food futures. The reason for this trend can be found in a 2016 </span><a href=\"http://www.prnewswire.com/news-releases/national-survey-taps-over-1700-dietitians-to-predict-top-2017-food-trends-300376374.html\">survey of 1,700 US dietitians</a><span lang=\"EN-US\" xml:lang=\"EN-US\">,</span><span lang=\"EN-US\" xml:lang=\"EN-US\"> that shows 49% of registered dietitians attribute the change to “mindfulness” eating where consumers will choose health foods over diets – why? Consumers are now better connected to the recommendations of registered dietitians through technology: fit-bits, point of sale apps and social media devices.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Technology trends such as biotechnology continue to offer resistance to viruses and increases in the shelf life of food which decreases food waste e.g. </span><a href=\"http://www.sciencedirect.com/science/article/pii/S0734975014001931\">a new generation of genome editing tools</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> is being developed for plants to help speed up gene discovery and trait development to facilitate both forward and reverse genetics.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">A pervasive technological trend is precision agriculture which creates specific strategies for each field of crops by using drones to monitor crop health, quadcopters to measure the growth of crops, apps to model data, </span><a href=\"http://www.abc.net.au/news/2016-02-11/precision-agriculture/7162914\">lasers</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to sense plant health to match plants to fertilizers and pesticides, and artificial intelligence to match plants to particular soil types. Computers aboard drones will also use the images with algorithms to </span><a href=\"https://www.kaggle.com/c/inaturalist-challenge-at-fgvc-2017\">recognise differences between plant and animal species</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></p>\r\n<p>&nbsp;</p>\r\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Solutions for a more sustainable future of food</span></strong></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Over time, trends can drive problems that require solutions. A range of global solutions are provided below.</span></p>\r\n<ul>\r\n<li><a href=\"http://unesdoc.unesco.org/images/0024/002468/246887E.pdf\">Systemic change</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> is recommended because of the interlinkages between consumer demand, product supply lifecycles and the environment – as technology-assisted populations increase from 6 billion to 9 billion, global incomes are increasing, further disturbing ecosystems, increasing energy use and expanding global industry, while water is in decline.</span></li>\r\n<li><a href=\"https://www.brisbanetimes.com.au/national/queensland/queensland-remains-australias-biggest-greenhouse-gas-emitter-20170711-gx951t.html\">Reduce greenhouse gas emissions</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> via development of carbon sinks, transitioning to electric vehicles, and by de-carbonising the energy sector, with a transitioning to solar and other renewables.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Use specialist </span><a href=\"http://www.gulf-times.com/story/565285/Dutch-firms-offer-solutions-for-Qatar-food-securit\">greenhouse techniques</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to provide stable climates for crops.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Understand the role of fair, equitable and sustainable food practices and trade in contributing to </span><a href=\"http://brandfinance.com/images/upload/brand_finance_food_and_beverage_report_locked.pdf\">the full food brand value chain</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> including links between marketing investment, brand tracking data, stakeholder behaviour and business value.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Protect food sources and plants on </span><a href=\"https://stateoftheworldsplants.com/2016/report/sotwp_2016.pdf\">the endangered list</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and threatened foods such as </span><a href=\"https://www.theguardian.com/environment/2017/sep/26/chips-chocolate-and-coffee-our-food-crops-face-mass-extinction-too\">chocolate</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, honey, </span><a href=\"http://www.bbc.co.uk/news/resources/idt-fa38cb91-bdc0-4229-8cae-1d5c3b447337\">coffee</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and peanut paste, and protect wild food sources not currently gene banked e.g. banana, aubergine and sorghum. A most important preservation and adaptation strategy is biodiversity – variety is the spice of life. This is because predicting temperatures for the planting of a particular crop is unwise when </span><a href=\"https://thefern.org/ag_insider/syrian-seeds-shake-europes-plant-patent-regime/\">a range of crops</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> can self-select for changes in climate.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Support food-related targets of the </span><a href=\"https://web.archive.org/web/20060223053428/http:/www.biodiv.org:80/doc/decisions/COP-06-dec-en.pdf\">Global Strategy for Plant Conservation</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to conserve 70% of the genetic diversity of crops and associated indigenous and local knowledge, and to halt the decline of resources and knowledge sustaining livelihoods, food security and health. In sub-Saharan Africa, studies showed that changes are needed by 2050 to prevent areas growing maize, bananas and beans from becoming unviable, through, for example, </span><a href=\"https://www.bioversityinternational.org/fileadmin/_migrated/uploads/tx_news/Participatory_plant_breeding_to_promote_Farmers__Rights_1254.pdf\">participatory plant breeding</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Identify </span><a href=\"https://stateoftheworldsplants.com/2016/climate-change.html\">which regions are more sensitive</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to climatic drivers than others, and reverse the effects of climate change overall, but especially in arid regions.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Eliminate food waste in the post-harvest supply chain, as more than </span><a href=\"http://www.eco-business.com/news/fixing-food-loss-with-disruptive-tech/\">one-third of food waste occurs before it reaches supermarket shelves</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></li>\r\n<li><span lang=\"EN-US\" xml:lang=\"EN-US\">Link growers to food technologists and tech experts who can create apps and devices that support ethical choices, so that consumers know </span><a href=\"http://www.nationalgeographic.com.au/australia/whats-the-real-price-of-your-groceries.aspx\">the real price of their groceries</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span></li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<p><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Going Forward</span></strong></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Advances in food technology are tremendously important to beating Malthusian scenarios where populations grow faster than food can be produced. In fact, everyone can </span><a href=\"http://www.un.org/sustainabledevelopment/takeaction/\">take action</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to help transform our food futures – whether it’s from your couch, at home, or outside the house, taking care of your right to elect appropriate leaders, or buying locally and buying smart, or even planting locally and learning about endangered plants to save them from becoming</span> <a href=\"http://www.press.uchicago.edu/books/excerpt/2015/Jordan_Edible_Memory.html\">heirlooms</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> of the past.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">Even with advanced equipment, life cycles, and systems, consumers and stakeholders cannot be connected to humane, sustainable futures without foresight and strategic direction. Growers and stakeholders struggle to make their industries sustainable </span><a href=\"https://www.technologyreview.com/s/601935/six-ways-drones-are-revolutionizing-agriculture/\">using AI in agricultural settings</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to automate plant and soil solutions because of drone safety, privacy issues and insurance questions that policy makers must grapple with. Systemic cooperation across boundaries is needed to facilitate outcomes where </span><a href=\"https://www.technologyreview.com/s/601935/six-ways-drones-are-revolutionizing-agriculture/\">AI in the food industry</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> offers new hope to a changing planet.</span></p>\r\n<p><span lang=\"EN-US\" xml:lang=\"EN-US\">The old story is of farmers providing the food basket to feed the global village. The new story is of the global village becoming sustainability farmers.</span></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</article>\r\n</div>\r\n<div class=\"_1yEvn\">\r\n<div class=\"_3YxRQ\" data-hook=\"post-main-actions-desktop\">\r\n<div class=\"ygPzE blog-separator-background-color\"> </div>\r\n<div class=\"_29Euw MQFQm\">\r\n<div id=\"post-social-actions\" class=\"_1nBO7 blog-text-color\" tabindex=\"-1\"> </div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- /wp:paragraph -->', 'The Future of Food - Who Will Be Hungry?', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2020-11-16 21:27:30', '2020-11-16 11:27:30', '', 1, 'http://localhost:8888/wordpress/2020/11/16/1-revision-v1/', 0, 'revision', '', 0),
(520, 1, '2020-11-16 21:31:58', '2020-11-16 11:31:58', '“Our Future”, a year-long consultation process about a long-term vision for the City of Geelong, has begun. City of Greater Geelong CEO Kelvin Spiller engaged the first UNESCO chair of futures studies, <a href=\"http://www.soif.org.uk/sohail-inayatullah/\">Sohail Inayatullah</a>, to kick-start the project in September.\r\n\r\nSpiller, who has produced <a href=\"http://emeraldinsight.com/doi/abs/10.1108/FS-02-2016-0003\">outcomes for city visioning</a> initiatives on the Sunshine Coast, describes <a href=\"https://geelongaustralia.com.au/ourfuture/default.aspx\">Our Future</a> as a process of “presenting new perceptions, future directions, identifying used futures and new scenarios”. In a rapidly changing world, citizens use scenario thinking to gain insights into how cities can create alternative possibilities and solutions.\r\n<h2>How does industry see the future?</h2>\r\nInayatullah helped workshops of industry professionals develop various industry scenarios:\r\n<ol>\r\n 	<li>Geelong’s emerging futures emphasise its great coastal beauty and its people’s strengths. The city remains small compared to the Gold Coast although, with 229,000 people, Greater Geelong is still among the largest of 561 local government areas in Australia. It is attractive, scenic and touristy. The city’s tranquil bay and marina, picturesque vineyards and proximity attract holidaymakers from Melbourne.\r\n<div class=\"slot\" data-id=\"17\">\r\n<div class=\"promo\"></div>\r\n</div></li>\r\n 	<li>Artificial intelligence (AI) futures open up a journey on the digital highway to build crowdsourced ideas, new funding models and business start-ups. Geelong’s traditional motor vehicle <a href=\"http://users.tpg.com.au/gmc/industry_strengths.html\">manufacturing culture</a> combines with a spirit of innovation and global enterprise. The city promotes, evolves and services the introduction of driverless cars, the gaming industry, smart technologies and robotics.</li>\r\n 	<li>Geelong’s population density, growing diversity, economic mix and proximity to Melbourne’s demographic richness support it as a social and education city. Geelong increases its transport and connectedness to its unique destinations to attract wide interests, new worker profiles and residents seeking a “sea change” from Melbourne’s inner suburbs. Residents network with local business owners and workers to generate services and programs for regional neighbours and Melbourne’s markets.</li>\r\n</ol>\r\n<h2>What does the community want?</h2>\r\nGuided by Inayatullah, a community interactive session used metaphors to bring home a message of continual transition. He describes the use of metaphors as being a decisive factor in shifting narrative strategy:\r\n<blockquote>If you don’t innovate and create agency to shift your own narrative, then culture eats strategy for breakfast.</blockquote>\r\n<figure>\r\n<div class=\"fluidvids\"><iframe class=\"fluidvids-item\" src=\"https://www.youtube.com/embed/blP0Q61-SXI?wmode=transparent&amp;start=0\" width=\"440\" height=\"260\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\" data-fluidvids=\"loaded\" data-mce-fragment=\"1\"></iframe></div>\r\n<figcaption><span class=\"caption\">Professor Sohail Inayatullah at the Geelong Our Future community session.</span></figcaption></figure>\r\nGeelong’s history of innovation includes the development of the world’s <a href=\"http://www.intown.com.au/feature/geelongs-ute-a-world-first.htm\">first ute</a> and the <a href=\"https://museumvictoria.com.au/about/mv-news/2009/harrison-refrigerator-model/\">first industrial refrigerator</a>. This history suggests Geelong could provide services to global niche markets.\r\n\r\nThe community also suggested transitions from costly and unnatural botanic gardens to green bionic gardens – sprawling rooftop gardens, indoor gardens and rainwater systems flowing into indigenous gardens. Gardens would beautify municipal roads and infrastructure.\r\n\r\nAnother suggested transition was from being a “dormitory of Melbourne” to being a retreat for Melbourne holidaymakers and a “hive” location for its best thinkers to create their futures.\r\n\r\nIn the community session, I outlined Gold Coast’s <a href=\"http://www.gchaveyoursay.com.au/bfpdiscussionforum\">Bold Future</a> initiative. My presentation featured the city’s growth, including 100 new high-rises on the Surfers Paradise skyline in five decades.\r\n<figure>\r\n<div class=\"fluidvids\"><iframe class=\"fluidvids-item\" src=\"https://www.youtube.com/embed/QcdtmXYoRQs?wmode=transparent&amp;start=0\" width=\"440\" height=\"260\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\" data-fluidvids=\"loaded\" data-mce-fragment=\"1\"></iframe></div>\r\n<figcaption><span class=\"caption\">The author explains how Gold Coast prepared for growth.</span></figcaption></figure>\r\n<h2>Navigating different growth scenarios</h2>\r\nThe challenge for Geelong is to navigate through growth scenarios such as:\r\n<ul>\r\n 	<li>Sustainable growth: five new high-rises emerge to support low-level tourism, conference accommodation and a burgeoning education and health precinct.</li>\r\n 	<li>Overdevelopment: an oversupply of residential and holiday maker apartments become difficult to fill, halting investment. Population waves are required to sustain rates and market base.</li>\r\n 	<li>Underdevelopment: Gold Coast’s rapid growth raises questions about Geelong’s slow growth and missed opportunities to develop high-rises alongside celebratory events packages. These packages rely on transport and tourism infrastructure and include the building of stadiums. The strength of underdevelopment, however, is that Geelong remains a clean, green and historically beautiful seaside city.</li>\r\n 	<li>Negative growth: collapse results in generations of hardship.</li>\r\n</ul>\r\nAn outcome of Gold Coast’s 2037 vision is its <a href=\"http://healthknowledge.moregoldcoast.com.au/\">Health and Knowledge Precinct</a>. The 200-hectare site has generated more than A$5 billion in investment and is now linked by light rail to the city’s tourism centres.\r\n\r\nSpiller noted that Geelong’s Our Future is continuing a 175-year process of reinvention. He hailed transformational metaphors that saw the city as more than a technology hub, potentially providing a deep commitment to networking to create a Silicon Valley. These have led to visions of transforming from a “resort city” to a “city of health and wellness”, from an “industrial, agricultural city” to a creative lifestyle, and from a “sleepy hollow” to an “emerging and sustainable city”.\r\n<figure>\r\n<div class=\"fluidvids\"><iframe class=\"fluidvids-item\" src=\"https://www.youtube.com/embed/fJVpOAi0dXo?wmode=transparent&amp;start=0\" width=\"440\" height=\"260\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\" data-fluidvids=\"loaded\" data-mce-fragment=\"1\"></iframe></div>\r\n<figcaption><span class=\"caption\">Kelvin Spiller talks about the visions for Geelong’s future.</span></figcaption></figure>\r\n<h2>Time for feedback on Geelong’s future</h2>\r\nOur Future extends over five stages, with the final three to begin in 2017.\r\n\r\nFrom January to March, the community can comment on ideas presented to date. Stages four and five will provide vision documents and conclude with an exhibition of the foresight journey the city has created.\r\n\r\nSpiller and his team are developing a ten-to-30-year Our Future vision and strategies, for the city’s social, environmental and community infrastructure in particular. You can have your say about Geelong’s future via the <a href=\"https://geelongaustralia.com.au/ourfuture/survey.aspx\">Our Future survey</a>.', 'From the Gold Coast to Geelong: how cities are shaping visions of their futures', '', 'publish', 'open', 'open', '', 'from-the-gold-coast-to-geelong-how-cities-are-shaping-visions-of-their-futures', '', '', '2020-11-16 21:31:58', '2020-11-16 11:31:58', '', 0, 'http://localhost:8888/wordpress/?p=520', 0, 'post', '', 0),
(521, 1, '2020-11-16 21:31:13', '2020-11-16 11:31:13', '', 'image-20141125-2362-1h3qjuh', '', 'inherit', 'open', 'closed', '', 'image-20141125-2362-1h3qjuh', '', '', '2020-11-16 21:31:13', '2020-11-16 11:31:13', '', 520, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/image-20141125-2362-1h3qjuh.jpg', 0, 'attachment', 'image/jpeg', 0),
(522, 1, '2020-11-16 21:31:34', '2020-11-16 11:31:34', '', 'image-20160531-13769-1rzbj5e', '', 'inherit', 'open', 'closed', '', 'image-20160531-13769-1rzbj5e', '', '', '2020-11-16 21:31:34', '2020-11-16 11:31:34', '', 520, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/image-20160531-13769-1rzbj5e.png', 0, 'attachment', 'image/png', 0),
(523, 1, '2020-11-16 21:31:36', '2020-11-16 11:31:36', '', '62d2jpxb-1354145672', '', 'inherit', 'open', 'closed', '', '62d2jpxb-1354145672', '', '', '2020-11-16 21:31:36', '2020-11-16 11:31:36', '', 520, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/62d2jpxb-1354145672.jpg', 0, 'attachment', 'image/jpeg', 0),
(524, 1, '2020-11-16 21:31:37', '2020-11-16 11:31:37', '', 'image-20160708-30670-dttsg6', '', 'inherit', 'open', 'closed', '', 'image-20160708-30670-dttsg6', '', '', '2020-11-16 21:31:37', '2020-11-16 11:31:37', '', 520, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/image-20160708-30670-dttsg6.jpg', 0, 'attachment', 'image/jpeg', 0),
(525, 1, '2020-11-16 21:31:38', '2020-11-16 11:31:38', '', 'image-20160718-2147-nb3akg', '', 'inherit', 'open', 'closed', '', 'image-20160718-2147-nb3akg', '', '', '2020-11-16 21:31:38', '2020-11-16 11:31:38', '', 520, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/image-20160718-2147-nb3akg.jpg', 0, 'attachment', 'image/jpeg', 0),
(526, 1, '2020-11-16 21:31:39', '2020-11-16 11:31:39', '', 'image-20161119-19345-9c77q1', '', 'inherit', 'open', 'closed', '', 'image-20161119-19345-9c77q1', '', '', '2020-11-16 21:31:39', '2020-11-16 11:31:39', '', 520, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/image-20161119-19345-9c77q1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(527, 1, '2020-11-16 21:31:41', '2020-11-16 11:31:41', '', 'image-20181205-186070-f58pk2', '', 'inherit', 'open', 'closed', '', 'image-20181205-186070-f58pk2', '', '', '2020-11-16 21:31:41', '2020-11-16 11:31:41', '', 520, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/image-20181205-186070-f58pk2.jpg', 0, 'attachment', 'image/jpeg', 0),
(528, 1, '2020-11-16 21:31:58', '2020-11-16 11:31:58', '“Our Future”, a year-long consultation process about a long-term vision for the City of Geelong, has begun. City of Greater Geelong CEO Kelvin Spiller engaged the first UNESCO chair of futures studies, <a href=\"http://www.soif.org.uk/sohail-inayatullah/\">Sohail Inayatullah</a>, to kick-start the project in September.\r\n\r\nSpiller, who has produced <a href=\"http://emeraldinsight.com/doi/abs/10.1108/FS-02-2016-0003\">outcomes for city visioning</a> initiatives on the Sunshine Coast, describes <a href=\"https://geelongaustralia.com.au/ourfuture/default.aspx\">Our Future</a> as a process of “presenting new perceptions, future directions, identifying used futures and new scenarios”. In a rapidly changing world, citizens use scenario thinking to gain insights into how cities can create alternative possibilities and solutions.\r\n<h2>How does industry see the future?</h2>\r\nInayatullah helped workshops of industry professionals develop various industry scenarios:\r\n<ol>\r\n 	<li>Geelong’s emerging futures emphasise its great coastal beauty and its people’s strengths. The city remains small compared to the Gold Coast although, with 229,000 people, Greater Geelong is still among the largest of 561 local government areas in Australia. It is attractive, scenic and touristy. The city’s tranquil bay and marina, picturesque vineyards and proximity attract holidaymakers from Melbourne.\r\n<div class=\"slot\" data-id=\"17\">\r\n<div class=\"promo\"></div>\r\n</div></li>\r\n 	<li>Artificial intelligence (AI) futures open up a journey on the digital highway to build crowdsourced ideas, new funding models and business start-ups. Geelong’s traditional motor vehicle <a href=\"http://users.tpg.com.au/gmc/industry_strengths.html\">manufacturing culture</a> combines with a spirit of innovation and global enterprise. The city promotes, evolves and services the introduction of driverless cars, the gaming industry, smart technologies and robotics.</li>\r\n 	<li>Geelong’s population density, growing diversity, economic mix and proximity to Melbourne’s demographic richness support it as a social and education city. Geelong increases its transport and connectedness to its unique destinations to attract wide interests, new worker profiles and residents seeking a “sea change” from Melbourne’s inner suburbs. Residents network with local business owners and workers to generate services and programs for regional neighbours and Melbourne’s markets.</li>\r\n</ol>\r\n<h2>What does the community want?</h2>\r\nGuided by Inayatullah, a community interactive session used metaphors to bring home a message of continual transition. He describes the use of metaphors as being a decisive factor in shifting narrative strategy:\r\n<blockquote>If you don’t innovate and create agency to shift your own narrative, then culture eats strategy for breakfast.</blockquote>\r\n<figure>\r\n<div class=\"fluidvids\"><iframe class=\"fluidvids-item\" src=\"https://www.youtube.com/embed/blP0Q61-SXI?wmode=transparent&amp;start=0\" width=\"440\" height=\"260\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\" data-fluidvids=\"loaded\" data-mce-fragment=\"1\"></iframe></div>\r\n<figcaption><span class=\"caption\">Professor Sohail Inayatullah at the Geelong Our Future community session.</span></figcaption></figure>\r\nGeelong’s history of innovation includes the development of the world’s <a href=\"http://www.intown.com.au/feature/geelongs-ute-a-world-first.htm\">first ute</a> and the <a href=\"https://museumvictoria.com.au/about/mv-news/2009/harrison-refrigerator-model/\">first industrial refrigerator</a>. This history suggests Geelong could provide services to global niche markets.\r\n\r\nThe community also suggested transitions from costly and unnatural botanic gardens to green bionic gardens – sprawling rooftop gardens, indoor gardens and rainwater systems flowing into indigenous gardens. Gardens would beautify municipal roads and infrastructure.\r\n\r\nAnother suggested transition was from being a “dormitory of Melbourne” to being a retreat for Melbourne holidaymakers and a “hive” location for its best thinkers to create their futures.\r\n\r\nIn the community session, I outlined Gold Coast’s <a href=\"http://www.gchaveyoursay.com.au/bfpdiscussionforum\">Bold Future</a> initiative. My presentation featured the city’s growth, including 100 new high-rises on the Surfers Paradise skyline in five decades.\r\n<figure>\r\n<div class=\"fluidvids\"><iframe class=\"fluidvids-item\" src=\"https://www.youtube.com/embed/QcdtmXYoRQs?wmode=transparent&amp;start=0\" width=\"440\" height=\"260\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\" data-fluidvids=\"loaded\" data-mce-fragment=\"1\"></iframe></div>\r\n<figcaption><span class=\"caption\">The author explains how Gold Coast prepared for growth.</span></figcaption></figure>\r\n<h2>Navigating different growth scenarios</h2>\r\nThe challenge for Geelong is to navigate through growth scenarios such as:\r\n<ul>\r\n 	<li>Sustainable growth: five new high-rises emerge to support low-level tourism, conference accommodation and a burgeoning education and health precinct.</li>\r\n 	<li>Overdevelopment: an oversupply of residential and holiday maker apartments become difficult to fill, halting investment. Population waves are required to sustain rates and market base.</li>\r\n 	<li>Underdevelopment: Gold Coast’s rapid growth raises questions about Geelong’s slow growth and missed opportunities to develop high-rises alongside celebratory events packages. These packages rely on transport and tourism infrastructure and include the building of stadiums. The strength of underdevelopment, however, is that Geelong remains a clean, green and historically beautiful seaside city.</li>\r\n 	<li>Negative growth: collapse results in generations of hardship.</li>\r\n</ul>\r\nAn outcome of Gold Coast’s 2037 vision is its <a href=\"http://healthknowledge.moregoldcoast.com.au/\">Health and Knowledge Precinct</a>. The 200-hectare site has generated more than A$5 billion in investment and is now linked by light rail to the city’s tourism centres.\r\n\r\nSpiller noted that Geelong’s Our Future is continuing a 175-year process of reinvention. He hailed transformational metaphors that saw the city as more than a technology hub, potentially providing a deep commitment to networking to create a Silicon Valley. These have led to visions of transforming from a “resort city” to a “city of health and wellness”, from an “industrial, agricultural city” to a creative lifestyle, and from a “sleepy hollow” to an “emerging and sustainable city”.\r\n<figure>\r\n<div class=\"fluidvids\"><iframe class=\"fluidvids-item\" src=\"https://www.youtube.com/embed/fJVpOAi0dXo?wmode=transparent&amp;start=0\" width=\"440\" height=\"260\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\" data-fluidvids=\"loaded\" data-mce-fragment=\"1\"></iframe></div>\r\n<figcaption><span class=\"caption\">Kelvin Spiller talks about the visions for Geelong’s future.</span></figcaption></figure>\r\n<h2>Time for feedback on Geelong’s future</h2>\r\nOur Future extends over five stages, with the final three to begin in 2017.\r\n\r\nFrom January to March, the community can comment on ideas presented to date. Stages four and five will provide vision documents and conclude with an exhibition of the foresight journey the city has created.\r\n\r\nSpiller and his team are developing a ten-to-30-year Our Future vision and strategies, for the city’s social, environmental and community infrastructure in particular. You can have your say about Geelong’s future via the <a href=\"https://geelongaustralia.com.au/ourfuture/survey.aspx\">Our Future survey</a>.', 'From the Gold Coast to Geelong: how cities are shaping visions of their futures', '', 'inherit', 'closed', 'closed', '', '520-revision-v1', '', '', '2020-11-16 21:31:58', '2020-11-16 11:31:58', '', 520, 'http://localhost:8888/wordpress/2020/11/16/520-revision-v1/', 0, 'revision', '', 0),
(529, 1, '2020-11-16 21:36:53', '2020-11-16 11:36:53', 'Mayors, CEOs, citizens and policy analysts are working to create uplifting images of their future cities. Their intended result is clear unifying visions for the city futures they desire.\r\n\r\nSo how can foresight make a difference in cities?\r\n<h2>Visioning</h2>\r\nThe first way foresight improves cities is through <a href=\"http://www.dse.vic.gov.au/effective-engagement/toolkit/tool-visioning\">visioning</a> projects. The City of Greater Geelong is aiming to look ahead 20 to 30 years through its first visioning and strategy project, Geelong 2040. Interviewed about this, Geelong City CEO Kelvin Spiller said:\r\n<blockquote>Geelong 2040 will be a city-changing experience, for the long-term betterment of its residents and stakeholders. City visioning will be supported by community engagement. In the same manner that corporate engagement helps the carriage of new innovations upwards, visioning can do this for the planning of urban areas.\r\n<div class=\"slot\" data-id=\"17\">\r\n<div class=\"promo\">\r\n<div class=\"MuiBox-root-79 jss80 jss78\">\r\n<div>\r\n<h5 class=\"MuiTypography-root-95 jss81 MuiTypography-h5-104 jss86 MuiTypography-colorInherit-117\">Get news that’s free, independent and based on evidence.</h5>\r\n<button class=\"MuiButtonBase-root-143 MuiButton-root-128 jss126 jss125 MuiButton-contained-136 MuiButton-containedPrimary-137\" tabindex=\"0\" type=\"button\"><span class=\"MuiButton-label-129\">Get newsletter</span></button></div>\r\n</div>\r\n</div>\r\n</div>\r\nPerhaps longer-term visioning should be legislated to encourage managers to help cascade preferences upward and not only into the city vision.</blockquote>\r\n<h2>Scenarios</h2>\r\nThe second way foresight shapes cities is by applying futures methods like scenarios. Scenarios use group problem-solving and collective cognition to shape insights into alternatives.\r\n\r\nWhat are our 2040 city futures scenarios? Considering an emerging <a href=\"http://www.shapingseq.com.au/\">regional plan</a> for Southeast Queensland, professor <a href=\"http://www.metafuture.org/about-us/\">Sohail Inayatullah</a>, the first UNESCO Chair in Futures Studies, created the following alternatives:\r\n\r\n<strong>Scenario one:</strong> visions are achieved and our cities are still liveable. By 2040, the population has dramatically increased, but good governance, community consultation and foresight have mitigated negative possibilities (crime, congestion, pollution) and enhanced positive possibilities (job growth, green belt protection, water and energy management).\r\n\r\nPeople want to move into these visionary cities, even with higher housing prices. A fair go is still possible.\r\n<figure class=\"align-right zoomable\"><a href=\"https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=1000&amp;fit=clip\"><img src=\"https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=237&amp;fit=clip\" sizes=\"(min-width: 1466px) 754px, (max-width: 599px) 100vw, (min-width: 600px) 600px, 237px\" srcset=\"https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=600&amp;h=841&amp;fit=crop&amp;dpr=1 600w, https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=30&amp;auto=format&amp;w=600&amp;h=841&amp;fit=crop&amp;dpr=2 1200w, https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=15&amp;auto=format&amp;w=600&amp;h=841&amp;fit=crop&amp;dpr=3 1800w, https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=754&amp;h=1057&amp;fit=crop&amp;dpr=1 754w, https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=30&amp;auto=format&amp;w=754&amp;h=1057&amp;fit=crop&amp;dpr=2 1508w, https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=15&amp;auto=format&amp;w=754&amp;h=1057&amp;fit=crop&amp;dpr=3 2262w\" alt=\"\" /></a>\r\n<div class=\"enlarge_hint\"></div>\r\n<figcaption><span class=\"caption\">Scenario two: hot and paved.</span> <span class=\"attribution\"><a class=\"source\" href=\"https://www.flickr.com/photos/danspink/15698491719/in/photolist-pVdSEk\">dnlspnk/flickr</a>, <a class=\"license\" href=\"http://creativecommons.org/licenses/by-nc/4.0/\">CC BY-NC</a></span></figcaption></figure>\r\n<strong>Scenario two:</strong> cities arrive at the fate of being “hot and paved”. Market pressures kept driving up housing prices. Developers paid lip service to green and social concerns and a two-class society has emerged. Traffic problems did not decrease; rather, efforts to widen highways led to more congestion. Funding went to major highway connections while public transport and alternative working-from-home practices were overlooked.\r\n\r\nGlobal warming has only made life worse – temperatures continue to rise, water shortages increase. Health indicators worsen.\r\n\r\nThree tiers of government look to each other for solutions. Federal governments just seek to stay in power. Capacity for sustainable futures shrinks.\r\n\r\n<strong>Scenario three:</strong> worse yet, 2040 could be wired and miserable. In this scenario, the previous 20 years have been a series of confrontations between local, state and federal governments, between developers and environmentalists, between individual freedom and security, young and old, rural and coastal areas, and new migrants (many environmental refugees) and old migrants.\r\n\r\nIt is a world of endless sprawl, congested highways and gang warfare. Technology and power are used to keep collective peace.\r\n\r\n<strong>Scenario four:</strong> the concern is for the long-term future. Councils all over Australia continue to develop their own visions. As a result, there is a community capacity to innovate.\r\n\r\nThe percentage of people known as “cultural creatives” has grown dramatically. The values of sustainability, spirituality, innovation and global governance have become the official values.\r\n\r\nThe main changes are toward home-based work, public transport and active transport. Futures thinking is helping cities get ahead of challenges such as climate change, population growth and democratic policy selection.\r\n<figure>\r\n<div class=\"fluidvids\"><iframe class=\"fluidvids-item\" src=\"https://www.youtube.com/embed/L5MJ_APlLc4?wmode=transparent&amp;start=0\" width=\"440\" height=\"260\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\" data-fluidvids=\"loaded\" data-mce-fragment=\"1\"></iframe></div>\r\n<figcaption><span class=\"caption\">An introduction to Sohail Inayatullah’s work on futures thinking.</span></figcaption></figure>\r\nInayatullah’s new book, <a href=\"http://www.metafuture.org/product/what-works-2\">What Works</a>, discusses other studies about city futures.\r\n<h2>Sustainable actions</h2>\r\nA third way foresight shapes futures is through sustainable actions. The following four southeast Queensland cities have undertaken city visioning in areas of public transport, energy and environment, and liveability.\r\n\r\nBrisbane is planning <a href=\"https://www.brisbane.qld.gov.au/traffic-transport/public-transport/brisbane-metro-subway-system\">subway metro</a> and cross-river rail projects. These will benefit commuters in the middle and outer suburbs, who are increasingly experiencing long periods of gridlock.\r\n<figure class=\"align-right zoomable\"><a href=\"https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=1000&amp;fit=clip\"><img src=\"https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=237&amp;fit=clip\" sizes=\"(min-width: 1466px) 754px, (max-width: 599px) 100vw, (min-width: 600px) 600px, 237px\" srcset=\"https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=600&amp;h=721&amp;fit=crop&amp;dpr=1 600w, https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=30&amp;auto=format&amp;w=600&amp;h=721&amp;fit=crop&amp;dpr=2 1200w, https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=15&amp;auto=format&amp;w=600&amp;h=721&amp;fit=crop&amp;dpr=3 1800w, https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=754&amp;h=906&amp;fit=crop&amp;dpr=1 754w, https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=30&amp;auto=format&amp;w=754&amp;h=906&amp;fit=crop&amp;dpr=2 1508w, https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=15&amp;auto=format&amp;w=754&amp;h=906&amp;fit=crop&amp;dpr=3 2262w\" alt=\"\" /></a>\r\n<div class=\"enlarge_hint\"></div>\r\n<figcaption><span class=\"caption\">On the Sunshine Coast, the council is building a solar plant to offset all its energy use.</span> <span class=\"attribution\"><a class=\"source\" href=\"https://d1j8a4bqwzee3.cloudfront.net/~/media/Corporate/Images/AuthorsPageImages/artists-impression-solar-farm-carousel.jpg?la=en\">Artist\'s impression, Sunshine Coast Regional Council</a></span></figcaption></figure>\r\nOn the Sunshine Coast, a 15-megawatt <a href=\"http://www.sunshinecoast.qld.gov.au/Council/Planning-and-Projects/Major-Regional-Projects/Sunshine-Coast-Solar-Farm\">solar-powered plant</a> is a first for Australian local government. It will offset the council’s entire electricity consumption by 2017.\r\n\r\nOn the Gold Coast, 7.3km of <a href=\"http://www.tmr.qld.gov.au/Projects/Name/G/Gold-Coast-Light-Rail-Stage-2.aspx\">light rail</a> extensions will be delivered before the 2018 Commonwealth Games. This will ease congestion, improve accessibility and promote economic growth.\r\n\r\nIn Logan, a <a href=\"http://www.couriermail.com.au/news/queensland/brisbane-south-bank-entertainment-precinct-inspires-plans-for-similar-project-in-logan/news-story/b84b85d938a861baced5c2f22686f4c4\">Southbank development</a> will create recreational space on river banks alongside floating restaurants to stimulate investment.\r\n\r\nWhen I interviewed former Brisbane City CEO Jude Munro about city foresight, she observed:\r\n<blockquote>The benefits from closely linking land use and transport planning are a clear priority. However, more is required. Better legislation is called for to help cities to plan with foresight, but also city councils should be trialling a range of other measures being employed successfully in Australia.\r\n\r\nFor example, having a community coalition of local leaders like the one the City of Logan is building can have positive insights for local governance teams to consider. Also, a dedicated team like the <a href=\"http://www.planning.org.au/documents/item/3245\">urban renewal team in Brisbane</a> in the mid-1990s to mid-2000s could help re-establish principles of local area planning in cities of southeast Queensland.</blockquote>\r\nIn southeast Queensland, a <a href=\"http://www.shapingseq.com.au/\">new regional plan</a> will unite its cities’ plans under a high-level strategic vision for the next 50 years.\r\n\r\nInayatullah, Spiller, Munro and I agree that, to ensure long-term actions work sustainably, cities should engage stakeholders and communities in visioning, involve futurists who understand how to apply and deepen scenarios and foresight methods, and create strategies within a futures framework. The last step relies upon:\r\n<ul>\r\n 	<li>developing stronger sectoral, suburban and regionally aligned long-term plans;</li>\r\n 	<li>aligning city short-term corporate plans to long-term visions;</li>\r\n 	<li>working with state and federal government to align city visions with global East-West strategies, including geopolitical, economic and cultural elements; and</li>\r\n 	<li>refreshing visions using futurists’ methods to ensure a scientific and democratic engagement process.</li>\r\n</ul>\r\nForesight is synonymous with a transforming, renewable and complex urbanism. Globally, cities are driving change and applying foresight to open their markets and improve collective prosperity and places.\r\n\r\nThe need for sustainable urbanism compels us to update plans not only for physical infrastructure but also for “softer” matters of population, energy, ecology, safety, education, health and seamless connection up, down and across sectors, borders and cultures. The more we think ahead with greater depth and breadth of understanding and co-operation, the better our city futures will be.', 'A tale of five cities: applying foresight to shape their futures', '', 'publish', 'open', 'open', '', 'a-tale-of-five-cities-applying-foresight-to-shape-their-futures', '', '', '2020-11-16 21:36:53', '2020-11-16 11:36:53', '', 0, 'http://localhost:8888/wordpress/?p=529', 0, 'post', '', 0),
(530, 1, '2020-11-16 21:36:53', '2020-11-16 11:36:53', 'Mayors, CEOs, citizens and policy analysts are working to create uplifting images of their future cities. Their intended result is clear unifying visions for the city futures they desire.\r\n\r\nSo how can foresight make a difference in cities?\r\n<h2>Visioning</h2>\r\nThe first way foresight improves cities is through <a href=\"http://www.dse.vic.gov.au/effective-engagement/toolkit/tool-visioning\">visioning</a> projects. The City of Greater Geelong is aiming to look ahead 20 to 30 years through its first visioning and strategy project, Geelong 2040. Interviewed about this, Geelong City CEO Kelvin Spiller said:\r\n<blockquote>Geelong 2040 will be a city-changing experience, for the long-term betterment of its residents and stakeholders. City visioning will be supported by community engagement. In the same manner that corporate engagement helps the carriage of new innovations upwards, visioning can do this for the planning of urban areas.\r\n<div class=\"slot\" data-id=\"17\">\r\n<div class=\"promo\">\r\n<div class=\"MuiBox-root-79 jss80 jss78\">\r\n<div>\r\n<h5 class=\"MuiTypography-root-95 jss81 MuiTypography-h5-104 jss86 MuiTypography-colorInherit-117\">Get news that’s free, independent and based on evidence.</h5>\r\n<button class=\"MuiButtonBase-root-143 MuiButton-root-128 jss126 jss125 MuiButton-contained-136 MuiButton-containedPrimary-137\" tabindex=\"0\" type=\"button\"><span class=\"MuiButton-label-129\">Get newsletter</span></button></div>\r\n</div>\r\n</div>\r\n</div>\r\nPerhaps longer-term visioning should be legislated to encourage managers to help cascade preferences upward and not only into the city vision.</blockquote>\r\n<h2>Scenarios</h2>\r\nThe second way foresight shapes cities is by applying futures methods like scenarios. Scenarios use group problem-solving and collective cognition to shape insights into alternatives.\r\n\r\nWhat are our 2040 city futures scenarios? Considering an emerging <a href=\"http://www.shapingseq.com.au/\">regional plan</a> for Southeast Queensland, professor <a href=\"http://www.metafuture.org/about-us/\">Sohail Inayatullah</a>, the first UNESCO Chair in Futures Studies, created the following alternatives:\r\n\r\n<strong>Scenario one:</strong> visions are achieved and our cities are still liveable. By 2040, the population has dramatically increased, but good governance, community consultation and foresight have mitigated negative possibilities (crime, congestion, pollution) and enhanced positive possibilities (job growth, green belt protection, water and energy management).\r\n\r\nPeople want to move into these visionary cities, even with higher housing prices. A fair go is still possible.\r\n<figure class=\"align-right zoomable\"><a href=\"https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=1000&amp;fit=clip\"><img src=\"https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=237&amp;fit=clip\" sizes=\"(min-width: 1466px) 754px, (max-width: 599px) 100vw, (min-width: 600px) 600px, 237px\" srcset=\"https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=600&amp;h=841&amp;fit=crop&amp;dpr=1 600w, https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=30&amp;auto=format&amp;w=600&amp;h=841&amp;fit=crop&amp;dpr=2 1200w, https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=15&amp;auto=format&amp;w=600&amp;h=841&amp;fit=crop&amp;dpr=3 1800w, https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=754&amp;h=1057&amp;fit=crop&amp;dpr=1 754w, https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=30&amp;auto=format&amp;w=754&amp;h=1057&amp;fit=crop&amp;dpr=2 1508w, https://images.theconversation.com/files/130650/original/image-20160715-2153-134evzm.jpg?ixlib=rb-1.1.0&amp;q=15&amp;auto=format&amp;w=754&amp;h=1057&amp;fit=crop&amp;dpr=3 2262w\" alt=\"\" /></a>\r\n<div class=\"enlarge_hint\"></div>\r\n<figcaption><span class=\"caption\">Scenario two: hot and paved.</span> <span class=\"attribution\"><a class=\"source\" href=\"https://www.flickr.com/photos/danspink/15698491719/in/photolist-pVdSEk\">dnlspnk/flickr</a>, <a class=\"license\" href=\"http://creativecommons.org/licenses/by-nc/4.0/\">CC BY-NC</a></span></figcaption></figure>\r\n<strong>Scenario two:</strong> cities arrive at the fate of being “hot and paved”. Market pressures kept driving up housing prices. Developers paid lip service to green and social concerns and a two-class society has emerged. Traffic problems did not decrease; rather, efforts to widen highways led to more congestion. Funding went to major highway connections while public transport and alternative working-from-home practices were overlooked.\r\n\r\nGlobal warming has only made life worse – temperatures continue to rise, water shortages increase. Health indicators worsen.\r\n\r\nThree tiers of government look to each other for solutions. Federal governments just seek to stay in power. Capacity for sustainable futures shrinks.\r\n\r\n<strong>Scenario three:</strong> worse yet, 2040 could be wired and miserable. In this scenario, the previous 20 years have been a series of confrontations between local, state and federal governments, between developers and environmentalists, between individual freedom and security, young and old, rural and coastal areas, and new migrants (many environmental refugees) and old migrants.\r\n\r\nIt is a world of endless sprawl, congested highways and gang warfare. Technology and power are used to keep collective peace.\r\n\r\n<strong>Scenario four:</strong> the concern is for the long-term future. Councils all over Australia continue to develop their own visions. As a result, there is a community capacity to innovate.\r\n\r\nThe percentage of people known as “cultural creatives” has grown dramatically. The values of sustainability, spirituality, innovation and global governance have become the official values.\r\n\r\nThe main changes are toward home-based work, public transport and active transport. Futures thinking is helping cities get ahead of challenges such as climate change, population growth and democratic policy selection.\r\n<figure>\r\n<div class=\"fluidvids\"><iframe class=\"fluidvids-item\" src=\"https://www.youtube.com/embed/L5MJ_APlLc4?wmode=transparent&amp;start=0\" width=\"440\" height=\"260\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\" data-fluidvids=\"loaded\" data-mce-fragment=\"1\"></iframe></div>\r\n<figcaption><span class=\"caption\">An introduction to Sohail Inayatullah’s work on futures thinking.</span></figcaption></figure>\r\nInayatullah’s new book, <a href=\"http://www.metafuture.org/product/what-works-2\">What Works</a>, discusses other studies about city futures.\r\n<h2>Sustainable actions</h2>\r\nA third way foresight shapes futures is through sustainable actions. The following four southeast Queensland cities have undertaken city visioning in areas of public transport, energy and environment, and liveability.\r\n\r\nBrisbane is planning <a href=\"https://www.brisbane.qld.gov.au/traffic-transport/public-transport/brisbane-metro-subway-system\">subway metro</a> and cross-river rail projects. These will benefit commuters in the middle and outer suburbs, who are increasingly experiencing long periods of gridlock.\r\n<figure class=\"align-right zoomable\"><a href=\"https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=1000&amp;fit=clip\"><img src=\"https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=237&amp;fit=clip\" sizes=\"(min-width: 1466px) 754px, (max-width: 599px) 100vw, (min-width: 600px) 600px, 237px\" srcset=\"https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=600&amp;h=721&amp;fit=crop&amp;dpr=1 600w, https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=30&amp;auto=format&amp;w=600&amp;h=721&amp;fit=crop&amp;dpr=2 1200w, https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=15&amp;auto=format&amp;w=600&amp;h=721&amp;fit=crop&amp;dpr=3 1800w, https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=45&amp;auto=format&amp;w=754&amp;h=906&amp;fit=crop&amp;dpr=1 754w, https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=30&amp;auto=format&amp;w=754&amp;h=906&amp;fit=crop&amp;dpr=2 1508w, https://images.theconversation.com/files/130651/original/image-20160715-2150-7c1ekh.jpg?ixlib=rb-1.1.0&amp;q=15&amp;auto=format&amp;w=754&amp;h=906&amp;fit=crop&amp;dpr=3 2262w\" alt=\"\" /></a>\r\n<div class=\"enlarge_hint\"></div>\r\n<figcaption><span class=\"caption\">On the Sunshine Coast, the council is building a solar plant to offset all its energy use.</span> <span class=\"attribution\"><a class=\"source\" href=\"https://d1j8a4bqwzee3.cloudfront.net/~/media/Corporate/Images/AuthorsPageImages/artists-impression-solar-farm-carousel.jpg?la=en\">Artist\'s impression, Sunshine Coast Regional Council</a></span></figcaption></figure>\r\nOn the Sunshine Coast, a 15-megawatt <a href=\"http://www.sunshinecoast.qld.gov.au/Council/Planning-and-Projects/Major-Regional-Projects/Sunshine-Coast-Solar-Farm\">solar-powered plant</a> is a first for Australian local government. It will offset the council’s entire electricity consumption by 2017.\r\n\r\nOn the Gold Coast, 7.3km of <a href=\"http://www.tmr.qld.gov.au/Projects/Name/G/Gold-Coast-Light-Rail-Stage-2.aspx\">light rail</a> extensions will be delivered before the 2018 Commonwealth Games. This will ease congestion, improve accessibility and promote economic growth.\r\n\r\nIn Logan, a <a href=\"http://www.couriermail.com.au/news/queensland/brisbane-south-bank-entertainment-precinct-inspires-plans-for-similar-project-in-logan/news-story/b84b85d938a861baced5c2f22686f4c4\">Southbank development</a> will create recreational space on river banks alongside floating restaurants to stimulate investment.\r\n\r\nWhen I interviewed former Brisbane City CEO Jude Munro about city foresight, she observed:\r\n<blockquote>The benefits from closely linking land use and transport planning are a clear priority. However, more is required. Better legislation is called for to help cities to plan with foresight, but also city councils should be trialling a range of other measures being employed successfully in Australia.\r\n\r\nFor example, having a community coalition of local leaders like the one the City of Logan is building can have positive insights for local governance teams to consider. Also, a dedicated team like the <a href=\"http://www.planning.org.au/documents/item/3245\">urban renewal team in Brisbane</a> in the mid-1990s to mid-2000s could help re-establish principles of local area planning in cities of southeast Queensland.</blockquote>\r\nIn southeast Queensland, a <a href=\"http://www.shapingseq.com.au/\">new regional plan</a> will unite its cities’ plans under a high-level strategic vision for the next 50 years.\r\n\r\nInayatullah, Spiller, Munro and I agree that, to ensure long-term actions work sustainably, cities should engage stakeholders and communities in visioning, involve futurists who understand how to apply and deepen scenarios and foresight methods, and create strategies within a futures framework. The last step relies upon:\r\n<ul>\r\n 	<li>developing stronger sectoral, suburban and regionally aligned long-term plans;</li>\r\n 	<li>aligning city short-term corporate plans to long-term visions;</li>\r\n 	<li>working with state and federal government to align city visions with global East-West strategies, including geopolitical, economic and cultural elements; and</li>\r\n 	<li>refreshing visions using futurists’ methods to ensure a scientific and democratic engagement process.</li>\r\n</ul>\r\nForesight is synonymous with a transforming, renewable and complex urbanism. Globally, cities are driving change and applying foresight to open their markets and improve collective prosperity and places.\r\n\r\nThe need for sustainable urbanism compels us to update plans not only for physical infrastructure but also for “softer” matters of population, energy, ecology, safety, education, health and seamless connection up, down and across sectors, borders and cultures. The more we think ahead with greater depth and breadth of understanding and co-operation, the better our city futures will be.', 'A tale of five cities: applying foresight to shape their futures', '', 'inherit', 'closed', 'closed', '', '529-revision-v1', '', '', '2020-11-16 21:36:53', '2020-11-16 11:36:53', '', 529, 'http://localhost:8888/wordpress/2020/11/16/529-revision-v1/', 0, 'revision', '', 0),
(531, 1, '2020-11-16 21:43:37', '2020-11-16 11:43:37', 'The Queensland government recently launched a <a href=\"http://www.shapingseq.com.au/\">call for ideas</a> to shape a revised plan for the future of Southeast Queensland.\r\n\r\nThe deputy premier and minister for infrastructure, local government and planning, Jackie Trad <a href=\"http://statements.qld.gov.au/Statement/2016/5/13/south-east-queenslanders-invited-to-help-shape-the-regions-future\">spoke recently</a> of the opportunities for Southeast Queenslanders to grow communities sustainably and protect the region’s amenity – its environs, facilities, services and values.\r\n\r\nThis plan will consider consequences for the next 50 years. A 20-year plan will underpin the 50-year vision.\r\n\r\nHowever, a long-term plan can’t properly underpin a vision without engaging many of Southeast Queensland’s stakeholders and visitors. It must also use appropriate <a href=\"http://metafuture.org/books/product/what-works-case-studies-in-the-practice-of-foresight/\">futures methods</a> to help look ahead 50 years.\r\n<h2>What role for futures thinking?</h2>\r\nProfessional futures studies tools help to map, anticipate and deepen understanding of complex local and global trends and challenges. Kelvin Spiller’s experience as CEO at Maroochy Shire Council, on the Sunshine Coast, includes a process of “visioning” to establish long-term priorities across the whole city.\r\n\r\nNow CEO of Geelong City Council, Spiller believes such visioning is vital for successful local government:\r\n<blockquote>… particularly when there are service implications worth tens of millions of dollars or infrastructure replacement is necessary.</blockquote>\r\nHe employs the following steps to bring about change in cities:\r\n<ul>\r\n 	<li>visioning with stakeholders;</li>\r\n 	<li>service planning;</li>\r\n 	<li>asset strategy planning;</li>\r\n 	<li>encouraging leaders and managers via upskilling and guidance contained in legislation;</li>\r\n 	<li>gaining a clear understanding of the council, government and community financial opportunities and constraints in relation to the vision as identified by the wider community. Link the infrastructure and social requirements of the vision to the finances available;</li>\r\n 	<li>managing carefully the expectations, what can be achieved and timelines with the community, key stakeholders and governments; and</li>\r\n 	<li>regularly refreshing the vision and strategic direction process with key stakeholders.</li>\r\n</ul>\r\n<h2>What the plan needs</h2>\r\nThe plan must consider the pressing and <a href=\"http://www.jfs.tku.edu.tw/wp-content/uploads/2015/09/3.pdf\">engaging futures</a> that affect the region’s residents. These include the softer social and harder economic and environmental issues and solutions that must cascade throughout cities if we want to achieve sustainability.\r\n\r\nSoutheast Queensland’s population will grow to <a href=\"http://statements.qld.gov.au/Statement/2016/5/13/south-east-queenslanders-invited-to-help-shape-the-regions-future\">5.3 million people</a> in the next 25 years, according to Trad. This growth has implications for how Queenslanders settle and then relocate in the region given the demographics of age groups and lifestyle changes – for example, work opportunities, career changes and family developments.\r\n\r\nOne implication of accelerated change is how quickly preferences of Generations X and Y change from wanting co-location options, specialised services and village communities. Each generation is seeking services that match their particular needs.\r\n<h2>Futures opportunities up for grabs</h2>\r\nIn visioning initiatives in the region’s cities, communities have created <a href=\"http://www.jfs.tku.edu.tw/wp-content/uploads/2015/03/19-3-A3-Russo.pdf\">city visions</a>. These called for the priorities to be areas of community and cultural connection, engagement, openness and environmental sustainability.\r\n\r\nA priority is pride in cities, and how we sustain a socially just and connected society across all demographics. Taking care of youth through to the elderly, multiple cultures, the disabled and disempowered requires designing and innovating to meet future health, security, cultural, education and social needs.\r\n\r\nUniting people around behaviours that help maintain and enhance the quality of our ecosystems, pristine air, water, food and energy requirements will remain of vital importance.\r\n\r\nOur economic interests include prospects for jobs and prosperity – not simply in creating wealth, but also in creating opportunities. Transport and technology challenges, the new digital economy and our knowledge economy factor highly.\r\n\r\nOur capacity to connect regionally to globally is also critical. Economic hotspots around the globe are shifting, as are the cities, mega-cities and cultures we network with.\r\n<h2>Questions remain</h2>\r\nThe plan’s strengths are in thinking about issues dealing with infrastructure and land use. Yet, in proposing the plan’s revision, some questions about “softer” issues remain unanswered:\r\n<ol>\r\n 	<li>In considering long-term consequences, will the plan help the creation of innovative futures networks that empower hard-to-reach communities alongside policymakers, businesses, NGOs, consultants and universities? And will it legislate for more and better community engagement standards by cities in the region?</li>\r\n 	<li>Given the projected population growth and accelerating pace of technological and climate change, will the plan encourage cities to develop city-wide visions and community plans to help them consider the opportunities and challenges ahead?</li>\r\n 	<li>What issues will the plan translate into strategy and actions to tackle regional challenges? Will these include health, education, policing and encouragement of jobs that create sustainable futures?</li>\r\n</ol>\r\nAnswers to these questions will depend largely on how stakeholders, community members and interested persons respond to the <a href=\"http://www.shapingseq.com.au/about-shaping-seq\">call for feedback</a>.', 'Queensland’s 50-year vision for its southeast must take heed of all region’s future needs', '', 'publish', 'open', 'open', '', 'queenslands-50-year-vision-for-its-southeast-must-take-heed-of-all-regions-future-needs', '', '', '2020-11-16 21:43:47', '2020-11-16 11:43:47', '', 0, 'http://localhost:8888/wordpress/?p=531', 0, 'post', '', 0),
(532, 1, '2020-11-16 21:43:37', '2020-11-16 11:43:37', 'The Queensland government recently launched a <a href=\"http://www.shapingseq.com.au/\">call for ideas</a> to shape a revised plan for the future of Southeast Queensland.\r\n\r\nThe deputy premier and minister for infrastructure, local government and planning, Jackie Trad <a href=\"http://statements.qld.gov.au/Statement/2016/5/13/south-east-queenslanders-invited-to-help-shape-the-regions-future\">spoke recently</a> of the opportunities for Southeast Queenslanders to grow communities sustainably and protect the region’s amenity – its environs, facilities, services and values.\r\n\r\nThis plan will consider consequences for the next 50 years. A 20-year plan will underpin the 50-year vision.\r\n\r\nHowever, a long-term plan can’t properly underpin a vision without engaging many of Southeast Queensland’s stakeholders and visitors. It must also use appropriate <a href=\"http://metafuture.org/books/product/what-works-case-studies-in-the-practice-of-foresight/\">futures methods</a> to help look ahead 50 years.\r\n<h2>What role for futures thinking?</h2>\r\nProfessional futures studies tools help to map, anticipate and deepen understanding of complex local and global trends and challenges. Kelvin Spiller’s experience as CEO at Maroochy Shire Council, on the Sunshine Coast, includes a process of “visioning” to establish long-term priorities across the whole city.\r\n\r\nNow CEO of Geelong City Council, Spiller believes such visioning is vital for successful local government:\r\n<blockquote>… particularly when there are service implications worth tens of millions of dollars or infrastructure replacement is necessary.</blockquote>\r\nHe employs the following steps to bring about change in cities:\r\n<ul>\r\n 	<li>visioning with stakeholders;</li>\r\n 	<li>service planning;</li>\r\n 	<li>asset strategy planning;</li>\r\n 	<li>encouraging leaders and managers via upskilling and guidance contained in legislation;</li>\r\n 	<li>gaining a clear understanding of the council, government and community financial opportunities and constraints in relation to the vision as identified by the wider community. Link the infrastructure and social requirements of the vision to the finances available;</li>\r\n 	<li>managing carefully the expectations, what can be achieved and timelines with the community, key stakeholders and governments; and</li>\r\n 	<li>regularly refreshing the vision and strategic direction process with key stakeholders.</li>\r\n</ul>\r\n<h2>What the plan needs</h2>\r\nThe plan must consider the pressing and <a href=\"http://www.jfs.tku.edu.tw/wp-content/uploads/2015/09/3.pdf\">engaging futures</a> that affect the region’s residents. These include the softer social and harder economic and environmental issues and solutions that must cascade throughout cities if we want to achieve sustainability.\r\n\r\nSoutheast Queensland’s population will grow to <a href=\"http://statements.qld.gov.au/Statement/2016/5/13/south-east-queenslanders-invited-to-help-shape-the-regions-future\">5.3 million people</a> in the next 25 years, according to Trad. This growth has implications for how Queenslanders settle and then relocate in the region given the demographics of age groups and lifestyle changes – for example, work opportunities, career changes and family developments.\r\n\r\nOne implication of accelerated change is how quickly preferences of Generations X and Y change from wanting co-location options, specialised services and village communities. Each generation is seeking services that match their particular needs.\r\n<h2>Futures opportunities up for grabs</h2>\r\nIn visioning initiatives in the region’s cities, communities have created <a href=\"http://www.jfs.tku.edu.tw/wp-content/uploads/2015/03/19-3-A3-Russo.pdf\">city visions</a>. These called for the priorities to be areas of community and cultural connection, engagement, openness and environmental sustainability.\r\n\r\nA priority is pride in cities, and how we sustain a socially just and connected society across all demographics. Taking care of youth through to the elderly, multiple cultures, the disabled and disempowered requires designing and innovating to meet future health, security, cultural, education and social needs.\r\n\r\nUniting people around behaviours that help maintain and enhance the quality of our ecosystems, pristine air, water, food and energy requirements will remain of vital importance.\r\n\r\nOur economic interests include prospects for jobs and prosperity – not simply in creating wealth, but also in creating opportunities. Transport and technology challenges, the new digital economy and our knowledge economy factor highly.\r\n\r\nOur capacity to connect regionally to globally is also critical. Economic hotspots around the globe are shifting, as are the cities, mega-cities and cultures we network with.\r\n<h2>Questions remain</h2>\r\nThe plan’s strengths are in thinking about issues dealing with infrastructure and land use. Yet, in proposing the plan’s revision, some questions about “softer” issues remain unanswered:\r\n<ol>\r\n 	<li>In considering long-term consequences, will the plan help the creation of innovative futures networks that empower hard-to-reach communities alongside policymakers, businesses, NGOs, consultants and universities? And will it legislate for more and better community engagement standards by cities in the region?</li>\r\n 	<li>Given the projected population growth and accelerating pace of technological and climate change, will the plan encourage cities to develop city-wide visions and community plans to help them consider the opportunities and challenges ahead?</li>\r\n 	<li>What issues will the plan translate into strategy and actions to tackle regional challenges? Will these include health, education, policing and encouragement of jobs that create sustainable futures?</li>\r\n</ol>\r\nAnswers to these questions will depend largely on how stakeholders, community members and interested persons respond to the <a href=\"http://www.shapingseq.com.au/about-shaping-seq\">call for feedback</a>.', 'Queensland’s 50-year vision for its southeast must take heed of all region’s future needs', '', 'inherit', 'closed', 'closed', '', '531-revision-v1', '', '', '2020-11-16 21:43:37', '2020-11-16 11:43:37', '', 531, 'http://localhost:8888/wordpress/2020/11/16/531-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(533, 1, '2020-11-16 21:48:38', '2020-11-16 11:48:38', '<div class=\"_1yEvn\">\r\n<div class=\"_2wZrM _1Ahim\" tabindex=\"-1\" data-hook=\"post-title\">\r\n<p class=\"_1gHzn _2M4wi blog-post-title-font blog-post-title-color blog-text-color post-title blog-hover-container-element-color _1EQZr blog-post-page-title-font\" data-hook=\"post-title\"><span style=\"font-size: 16px;\">CEO of Redland City Andrew Chesterman, and twenty executives created their City’s futures with Dr Colin Russo, Managing Director, Engaging Futures, presenter of the three-hour workshop ‘Redland City 2040: Futures Thinking and Strategy Transformation’, on 3 December 2018. Dr Russo presented Futures Thinking methods from the UNESCO Chair of Futures Studies, Professor Sohail Inayatullah’s Six Pillars of Futures Thinking. The methods included shared history, futures triangle, emerging issues analysis and alternative scenarios. Additionally, the group worked with Dr Russo’s Unicity Futures method. The method was created following terms from the article “Engaging Futures 2030 – Futures methods transforming governance” (Russo, 2015).</span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"yF0IC\" data-hook=\"post-description\"><article class=\"blog-post-page-font\">\r\n<div class=\"post-content__body\">\r\n<div class=\"lV_uZ _1LHlu _1ltva\" data-rce-version=\"8.5.0\">\r\n<div class=\"kcuBq _1PkHV blog-post-page-font _3f8WX uatYj\" dir=\"ltr\">\r\n<div class=\"kaqlz _1FQ9t blog-post-page-font zJfAe\">\r\n<div id=\"viewer-1mg0o\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-38sjo\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-5ejtp\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.png/v1/fill/w_1401,h_997,al_c,q_90/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.png/v1/fit/w_1000%2Ch_997%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n<span class=\"_3ULLf image-caption\" dir=\"auto\">CEO Andrew Chesterman - Clarifying Purpose and Shaping Futures</span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-798h\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-cordo\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">This workshop provided skills to shape the long-term futures of cities – map the future, anticipate emerging issues, understand long-term patterns of change, consequences of possible futures, and innovate and create new possibilities. The futures literacy and methods delivered in this workshop aimed to lead to new outcomes of preferred futures of Redland City. </span></p>\r\n<p id=\"viewer-cboup\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The workshop responded to critical futures questions, including:</span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-167dp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What are we doing to create and activate futures of Redlands Coast?</p>\r\n</li>\r\n 	<li id=\"viewer-9t4ok\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">How will emerging challenges impact Redlands Coast?</p>\r\n</li>\r\n 	<li id=\"viewer-2gkqp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What are the factors that impact our ability to apply ‘futures thinking’ to our businesses?</p>\r\n</li>\r\n 	<li id=\"viewer-9e3ke\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What is the Redlands Coast of the future?</p>\r\n</li>\r\n 	<li id=\"viewer-bkg9g\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">How do we get there?</p>\r\n</li>\r\n</ul>\r\n<p id=\"viewer-6tnbi\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of outcomes from the Redland City workshop is offered below.</span></p>\r\n\r\n<div id=\"viewer-c72vk\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-148nq\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Emerging Issues Analysis</strong></span></p>\r\n<p id=\"viewer-121nf\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A scan of emerging issues across multiple systems showed the following:</span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-82ei4\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Social change globally and at all other levels, is driving changes in cities. Cities are doing their part to manage trends such as people from other cultures settling locally and needing to feel a sense of belonging. It is thought that this process can be aided by increasing awareness of diversity arrangements after considering and building special requirements for support, to help people live alongside one another and eventually to make important contributions to their communities.</p>\r\n</li>\r\n 	<li id=\"viewer-a7o03\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">With increasing populations, environmental change must include a focus on zero-waste disposal as the emerging problem of waste transfer is inefficient and could be better managed locally, through the management of product life-cycles, re-use or repair, and waste disposal. The issue for local governments is particularly about waste disposal though communities are starting up new repair stations that could re-enforce awareness about sustainable product development and use. This is timely as Australian shopping centres have already removed plastic shopping bags and the question remains – what else can be done in local governments to prevent waste?</p>\r\n</li>\r\n 	<li id=\"viewer-540dv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Economic emerging issues includes a decreased manufacturing industry in Australia. While jobs trends clearly show jobs have moved from this sector, jobs have rapidly grown in the professional administration, community and health sectors. As the automation industries will cause further job transfers, it is thought that new roles will be found in technology and innovation industries and in tourism.</p>\r\n</li>\r\n 	<li id=\"viewer-98qnv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Technology emerging issues include disruptive artificial intelligence and other products and services reliant on stronger digital networks such as 5G. Smart futures are emerging such as systems that use personalised and public data and this could lead to a constant flow of valued information if managed securely and safely.</p>\r\n</li>\r\n 	<li id=\"viewer-391kp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Transport emerging issues include the development of automated or upgraded fuel efficient renewable energy supplied vehicles. A range of issues coalesce here, including regulation, privacy, safety and how to manage roads to relieve congestion.</p>\r\n</li>\r\n</ul>\r\n<div id=\"viewer-av0l7\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-dg22b\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.jpg/v1/fill/w_1480,h_658,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.jpg/v1/fit/w_1000%2Ch_910%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n<span class=\"_3ULLf image-caption\" dir=\"auto\">Redland Coast in Transformation: Dr Colin Russo, Presenter with Redland\'s CEO and Executives</span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-dm8fm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ebf0v\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The Futures Triangle</strong></span></p>\r\n<p id=\"viewer-csedm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The Futures Triangle (Inayatullah), helps to map out prevalent futures such as business as usual futures and preferred futures. It works with the “pull of the future” such as desired city images, the “weights of the past or present” that would hold back the preferred image because of a power shift or lack of knowledge or direction, and the “drivers” which push us toward our image of the future.</span></p>\r\n\r\n<div id=\"viewer-2imcs\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ad4dm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of discussion from the Redland City group that applied The Futures Triangle, is offered below:</span></p>\r\n<p id=\"viewer-feffm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Social inclusion is the image of the future for community focussed Redland City. Redland as a fully integrated society offers equity of opportunity for residents and visitors. This future is challenged by ageing population demographics, immigration, the NDIS funding model and youth unemployment. Images of the future that prevent social inclusion are negative social media, a lack of choice in housing, lack of industrial variety in a narrow-based economy and conservative decision making reflecting short-term interests in the community.</span></p>\r\n\r\n<div id=\"viewer-4q31m\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-dbk8c\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.jpg/v1/fill/w_720,h_534,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-en6dn\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-6p3is\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s environmental pull of the future is toward a City that is green and clean, in terms of playing a role in the world and offering low scale urban bushland homes nearby a clean ocean of experiences, teaming with wildlife. Climate change advocates help to sustain this promise of clean clear waters, while legislation, awareness, technology and determination towards a waste minimalisation and zero disposal are the practices creating on the ground change. </span></p>\r\n\r\n<div id=\"viewer-bbii\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-17n1j\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Environmental weights in the city include industry development that takes little responsibility for effects of growth. Also, the financial cost of sustainability is high to restore damage and sustain ecology, while pollution is the risk to the City’s natural assets.</span></p>\r\n\r\n<div id=\"viewer-4g6qr\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-22vv1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland\'s economic images of the pull of the future for local government prioritise affordable living, economic diversity and sufficiency. These hopes pull the city toward an attractive bay style coastal lifestyle, with clean environment, bushland and village housing settings in a sub-tropical climate. Its urban setting brings health care facilities including aged care. Economic pushes drive the city toward affordable housing in attractive locations. Revenue sources from the State’s Capital City of Brisbane as a neighbouring city ensure constant interest in Redland City. Residents are attracted by development that occurs steadily in the City. </span></p>\r\n\r\n<div id=\"viewer-4hqrh\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-f1k4i\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s economic weights that hold the City to its steady rate of growth include its outer lying proximity to Brisbane, and the accessibility provided by its transport networks – Redland’s futures are linked to its resources and accesses being focused on local area networks rather than regional connectivity.</span></p>\r\n\r\n<div id=\"viewer-20pfj\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-7fda4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Technology in Redland City in ten to twenty years will bring residents and visitors easy access to information and data that meet expectations. Drivers for better technology are the rate of change, new products and services, increased social information through technology and education. Education is being driven by knowledge about remote, personalised community needs, and the promise of better technology to come. Weights to this future include privacy, regulations, time and knowledge of how to innovate, financial constraints and security standards. Interoperability of technology is key to creating and procuring the right kinds of technologies and datasets to match the City’s emerging needs.</span></p>\r\n\r\n<div id=\"viewer-62qvb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-dmt9r\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Transport pulls to the future, are about efficient and effective movement. </span></p>\r\n<p id=\"viewer-b10et\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The City is pushed toward efficiency with growth of its population, concerns for safety and interests in connected lifestyles. Weights to efficacious transport movement include regulations and aims for the region and State.</span></p>\r\n\r\n<div id=\"viewer-43vbb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-5dakq\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.jpg/v1/fill/w_720,h_480,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-214mt\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-b9su4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-6aoto\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-innu\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Organisational Scenarios Method</strong></span></p>\r\n<p id=\"viewer-24esa\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Prior to the Unicity Method, scenarios were created using the Organisational Scenario Method, from five tables including the CEO and 20 strategy leaders working on social, economic, environmental, transport and technology futures. Each group created four preferred future scenarios, and the name of each scenario is included below:</span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-enevj\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Social Preferred Future: “Challenged youth, to youth challenging”</p>\r\n</li>\r\n 	<li id=\"viewer-2n9qp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Environmental Preferred Future: “Our Environmental Investments are our Future”</p>\r\n</li>\r\n 	<li id=\"viewer-1v7ot\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Economic Preferred Future: “Quandamooka Heritage and Tourism”</p>\r\n</li>\r\n 	<li id=\"viewer-9n07u\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Transport Preferred Future: “Blue is the new Black”</p>\r\n</li>\r\n 	<li id=\"viewer-15il0\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Technology Preferred Future: “Development of A Sandbox Environment”</p>\r\n</li>\r\n</ul>\r\n<p id=\"viewer-2ntn2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The Unicity Method session was then used to clarify preferred futures generated from the Organisational Scenario Method. </span></p>\r\n\r\n<div id=\"viewer-cnc3s\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-1v24g\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_1wj_L IoEY5 IoEY5 _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.jpg/v1/fill/w_720,h_450,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-326ae\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-c75vr\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The Unicity Method</strong></span></p>\r\n<p id=\"viewer-6hvc7\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The following are some shifts in thinking that the Unicity Method helps with. When I last used the Unicity Method with the CEO of Deaf Services Queensland and deaf community members, it was with the awareness that the group wanted to explore their strengths, to make their current identity part of their preferred futures. This is one of the reasons I work with the method today. Here are other core reasons to use the Unicity Futures Method:</span></p>\r\n\r\n<ol class=\"public-DraftStyleDefault-ol\">\r\n 	<li id=\"viewer-8jrue\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We are unclear about our worth – we trade-off instead of trading up. Instead of always going one step forward and one step backward, we should be enhancing, or making a better world. For example, in climate change, cities create renewable energy supplies, but increase use of fossil fuels, or increase populations so that consumption remains the same. An alternative example, is using solar directly from rooftops instead of fossil fuelled electricity supplies from the grid, to operate electric vehicles.</p>\r\n</li>\r\n 	<li id=\"viewer-7vfen\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We forget what others are doing in other locations, so that we often reinvent the wheel, or lose valuable insights. We forget that the world we are heading into will have emerging possibilities and will not be the same way it is today, even across many core areas.</p>\r\n</li>\r\n 	<li id=\"viewer-cj3pk\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We don’t align our strengths and our strategies ways that focus our energies. We reject sustainability instead of making it a core principle of our plans and actions. Instead we spend more money on stand-alone actions to slow climate-change e.g. carbon sequestration / pollution filter machines, when other motors do not pollute the atmosphere. We often create projects without implementing actions that work with our visions.</p>\r\n</li>\r\n 	<li id=\"viewer-d7t9e\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We are slow to understand why existing strategies don’t work. We leave many strategies from other parties of the past, while we test new ones without learning from the past. We forget to deliver urgent time-saving projects while we focus on seemingly important actions. We try strategies from the past, but forget to generate appropriate new ones that give us more choice and adaptive agility.</p>\r\n</li>\r\n 	<li id=\"viewer-52qh2\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We forget to improve and evolve strategies that work well currently, and end up with a business as usual strategy that fails us tomorrow.</p>\r\n</li>\r\n</ol>\r\n<div id=\"viewer-39d04\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-eco28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Discussion from the Unicity Method</strong></span></p>\r\n<p id=\"viewer-57d96\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The discussion is collated here, under the main headings of the Unicity Method as they apply to Redland City’s workshop.</span></p>\r\n\r\n<div id=\"viewer-ck23e\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-bq805\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.jpg/v1/fill/w_1480,h_987,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-8u58r\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ei6b6\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Redland City is Unique for many reasons</strong></span></p>\r\n<p id=\"viewer-cpkd\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland City is near the Queensland State Capital of Brisbane with all of its institutions and facilities and connects “Minjerribah”, the traditional custodian’s name for the world class North Stradbroke Island. The Quandamooka people have inhabited the Island for more than 18,000 years, well before the arrival of Europeans in the late 1700’s. Redland was declared a Shire in 1949, and has emerged from its then population of 6,000 living within bushland to become a city of 155,000 who retain much of the bushland giving home to Australian wildlife. The City is protective of its Venman National Forest, Ramsar Wetlands and heritage listed sites. </span></p>\r\n\r\n<div id=\"viewer-1cics\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-8f303\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Redland will strive to retain its unique identity into the future</strong></span></p>\r\n<p id=\"viewer-3vgj5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">There is a strong feeling that Redland Coast should not only retain its social, environmental and economic values into the future, but will strengthen these values. For example, it will become better connected, and create the conditions for sustainability with more diversity of wildlife and wildlife corridors. Connections to Stradbroke Island will also be diversified while deepening appreciation of Redland City’s cultural and wildlife heritage.</span></p>\r\n\r\n<div id=\"viewer-htf\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-foakb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Universally accepted norms for this “naturally wonderful” city</strong></span></p>\r\n<p id=\"viewer-8gork\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland Coast is regarded to be a community focussed city with tourism and business supported by policies and governance that supports equality and inclusion.</span></p>\r\n\r\n<div id=\"viewer-uqv1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-3j5gv\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Preferred futures for what Redland’s is renowned for </strong></span></p>\r\n<p id=\"viewer-1u1d9\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland City’s naturally wonderful branding showcases the City as a naturally community and heritage focussed city, working on its adaptive and innovative capacities through better access, preservation of its cultural vibrancy and sub-tropical feeling, promotion of natural wonders, but also by promoting itself as a leader of equality and inclusion. It will emphasise its self-sustaining capacities and its future focus, as it connects with cities in the region, including Brisbane City.</span></p>\r\n\r\n<div id=\"viewer-d06b9\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-b2fr0\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>What unites Redland City’s communities in engagements that deliver current and near-term plans?</strong></span></p>\r\n<p id=\"viewer-fians\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s programs and practices unite stakeholders, residents and visitors with events and occurrences, environmental heritage and cultural depth of the mainland and beautiful North Stradbroke and nearby islands. Redland’s stakeholder and community engagement strategies build Redland’s identity and a sense of belonging which boosts community in all of its forms – communities of location, businesses and organisations, institutions, neighbouring and distant communities, and virtual communities.</span></p>\r\n<p id=\"viewer-b80h5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A possible near-term strategy, is an alternative community ownership program that builds shareholders in the community. This strategy would also share responsibility and accountability with Redland’s communities, conveying pride in place, heritage and hopes for the future.</span></p>\r\n<p id=\"viewer-at3m2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Social networks that contribute to the understanding of the City’s hopes would integrate community groups and help to engage them in future focused activities. These could include coastal and marine education, renewable energy practices, including awareness raising of the City’s possible interests in solar, wind and water driven renewable energy strategies. A further suggestion regarding community connection, is to employ locally, and this is suggested to reduce local traffic, while boosting local awareness and knowledge and commitment to strategies and project that would offer hope and support for Redland’s futures. </span></p>\r\n\r\n<div id=\"viewer-4o1in\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-bp0dc\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Uniting Redland’s people toward a preferred 2040 future</strong></span></p>\r\n<p id=\"viewer-b6s9d\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The group suggested that uniting community members would occur by investing in strategic marine opportunities, along with strategies to develop modern local jobs, better engagement with community and more transport linkages. The connection of social networks and community groups would support the City in raising awareness about futures that generate innovation hubs. Supportive infrastructure includes adapting toward the internet of things and 5G communication networks.</span></p>\r\n\r\n<div id=\"viewer-18uim\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-7kdkt\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>What would untie the City’s unique and preferred futures?</strong></span></p>\r\n<p id=\"viewer-ehmrk\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Core strategies for avoiding the untying of the City’s plans include: avoiding too much debt via efficiency of financial expenditure, avoiding delays and disasters by maintaining resource infrastructure, avoiding litigation issues by adhering to legislation and developing policies that supports the City’s aims. The City can also avoid distractions and delays by interfacing with government departments and anticipating their drivers, developing supportive politics, and appropriate funding and budgets.</span></p>\r\n\r\n<div id=\"viewer-d0sla\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-er08t\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The preferred future for Council approaches that would prevent weakening of the City’s strategic focus</strong></span></p>\r\n<p id=\"viewer-fukak\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The long-term preferred future for Redland City should seek to strengthen alignment between government agencies that can help Redland Coast to focus its efforts on completing significant projects that leave a lasting legacy. A focus on innovative and significant outcomes will help Redland Coast to deliver its aims of promoting a “naturally wonderful” city, while protecting its strategic assets. The City will strengthen and promote strategic support among stakeholders and help groups to become self-directed and self-sustaining and supportive of its aims. </span></p>\r\n\r\n<div id=\"viewer-fosg4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ac8q1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Unmet needs and strategies</strong></span></p>\r\n<p id=\"viewer-225m1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Near-term strategies include scattered approaches all around the city – programs and practices linked to events and social, economic and environmental outcomes. These strategies would empower Redland’s youth, develop transport links on land and water, such as a fast ferry from Brisbane. </span></p>\r\n\r\n<div id=\"viewer-cucio\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-5vbvu\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.jpg/v1/fill/w_720,h_468,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-f5g28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-75d28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Future Strategies</strong></span></p>\r\n<p id=\"viewer-faud2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland 2020-2040 strategies that emerged from the Unicity Method session are listed here. </span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-4gd93\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Showcase the environment in Redland Coast</p>\r\n</li>\r\n 	<li id=\"viewer-cs2qu\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Strengthen transport links from Brisbane to Redland Bay and North Stradbroke Island</p>\r\n</li>\r\n 	<li id=\"viewer-1bkn1\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Creation of a Youth Council</p>\r\n</li>\r\n 	<li id=\"viewer-dt1v5\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Ocean, Air and Rail links to Brisbane Airport</p>\r\n</li>\r\n 	<li id=\"viewer-4sq7u\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Marine-tech/Envirotech to create sustainable, renewable energy</p>\r\n</li>\r\n 	<li id=\"viewer-5rs4n\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Quandamooka People’s heritage and tourism strategy</p>\r\n</li>\r\n 	<li id=\"viewer-dmac1\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Engagement and better understanding of how the City’s work is delivered</p>\r\n</li>\r\n 	<li id=\"viewer-75dnm\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Joined/combined approaches</p>\r\n</li>\r\n 	<li id=\"viewer-5qit\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Youth participating in social initiatives to imagine alternative futures</p>\r\n</li>\r\n 	<li id=\"viewer-157mu\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Privacy Act for new technology – quadcopters and dataflow</p>\r\n</li>\r\n 	<li id=\"viewer-7amm2\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Fast ferry from Brisbane</p>\r\n</li>\r\n 	<li id=\"viewer-470oc\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Create Marine and Environmental Technology</p>\r\n</li>\r\n 	<li id=\"viewer-bqv68\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Facilitate commerce to solve ferry and other engineering solutions</p>\r\n</li>\r\n 	<li id=\"viewer-7j8lv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Demand responsive transport to access innovation and learning hubs</p>\r\n</li>\r\n</ul>\r\n<div id=\"viewer-316s6\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-7hehq\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_1wj_L IoEY5 IoEY5 _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.jpg/v1/fill/w_720,h_488,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n<span class=\"_3ULLf image-caption\" dir=\"auto\">\"Be Naturally Wonderful\" by protecting and working equitably with the environment and its people</span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-8hgcd\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ca74m\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of core Redland City 2020-2040 strategies that emerged from the Unicity Method session follow: </span></p>\r\n\r\n<div id=\"viewer-5ia19\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-5rnve\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Links from Brisbane to Redland Bay and North Stradbroke Island Creation of a Youth Council Ocean, Air and Rail links to Brisbane Airport Marine-tech/Envirotech to create sustainable, renewable energy Quandamooka People’s heritage and tourism strategy.</span></p>\r\n<p id=\"viewer-8jtg5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A Futures Thinking workshop sets out principles of strategic futures thinking for lessons supporting discussions of context and broader analysis. This foundation includes sector changes, stage of development of a sector (size, protocols, capacities in a market and community), emerging issues and possible futures - assumptions of the rate of growth and other contexts presented for consideration when creating preferred futures. Then, alternative futures, and a preferred future are able to be created, defined and broadened in context and scope. This solid foundation was generated by Redland City’s CEO and strategy leaders, and was clarified by applying the strategic futures method The Unicity Method. </span></p>\r\n\r\n<div id=\"viewer-e8kni\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-aqot8\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">It is suggested that further futures methods be used to assist the City, especially Causal Layered Analysis, which can be workshopped to deepen the preferred futures.</span></p>\r\n\r\n<div id=\"viewer-dpup3\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-7fsgj\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Special thanks to Andrew Chesterman, Angela Milne and team, for internal arrangements.</span></p>\r\n<p id=\"viewer-4r68i\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</article></div>', 'Redland City 2040: Futures Thinking and Strategy Transformation Workshop', '', 'publish', 'open', 'open', '', 'redland-city-2040-futures-thinking-and-strategy-transformation-workshop', '', '', '2020-11-16 21:58:42', '2020-11-16 11:58:42', '', 0, 'http://localhost:8888/wordpress/?p=533', 0, 'post', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(534, 1, '2020-11-16 21:48:38', '2020-11-16 11:48:38', '<div class=\"_1yEvn\">\r\n<div class=\"_2wZrM _1Ahim\" tabindex=\"-1\" data-hook=\"post-title\">\r\n<h1 class=\"_1gHzn _2M4wi blog-post-title-font blog-post-title-color blog-text-color post-title blog-hover-container-element-color _1EQZr blog-post-page-title-font\" data-hook=\"post-title\"><span style=\"font-size: 16px;\">CEO and Twenty Executives Discussed Preferred 2040 Futures for Redland City</span></h1>\r\n</div>\r\n</div>\r\n<div class=\"yF0IC\" data-hook=\"post-description\"><article class=\"blog-post-page-font\">\r\n<div class=\"post-content__body\">\r\n<div class=\"lV_uZ _1LHlu _1ltva\" data-rce-version=\"8.5.0\">\r\n<div class=\"kcuBq _1PkHV blog-post-page-font _3f8WX uatYj\" dir=\"ltr\">\r\n<div class=\"kaqlz _1FQ9t blog-post-page-font zJfAe\">\r\n<div id=\"viewer-fsq16\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-82bva\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">CEO of Redland City Andrew Chesterman, and twenty executives created their City’s futures with Dr Colin Russo, Managing Director, Engaging Futures, presenter of the three-hour workshop ‘Redland City 2040: Futures Thinking and Strategy Transformation’, on 3 December 2018. Dr Russo presented Futures Thinking methods from the UNESCO Chair of Futures Studies, Professor Sohail Inayatullah’s Six Pillars of Futures Thinking. The methods included shared history, futures triangle, emerging issues analysis and alternative scenarios. Additionally, the group worked with Dr Russo’s Unicity Futures method. The method was created following terms from the article “Engaging Futures 2030 – Futures methods transforming governance” (Russo, 2015). </span></p>\r\n\r\n<div id=\"viewer-1mg0o\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-38sjo\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-5ejtp\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.png/v1/fill/w_1401,h_997,al_c,q_90/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.png/v1/fit/w_1000%2Ch_997%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n<span class=\"_3ULLf image-caption\" dir=\"auto\">CEO Andrew Chesterman - Clarifying Purpose and Shaping Futures</span></div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-798h\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-cordo\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">This workshop provided skills to shape the long-term futures of cities – map the future, anticipate emerging issues, understand long-term patterns of change, consequences of possible futures, and innovate and create new possibilities. The futures literacy and methods delivered in this workshop aimed to lead to new outcomes of preferred futures of Redland City. </span></p>\r\n<p id=\"viewer-cboup\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The workshop responded to critical futures questions, including:</span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-167dp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What are we doing to create and activate futures of Redlands Coast?</p>\r\n</li>\r\n 	<li id=\"viewer-9t4ok\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">How will emerging challenges impact Redlands Coast?</p>\r\n</li>\r\n 	<li id=\"viewer-2gkqp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What are the factors that impact our ability to apply ‘futures thinking’ to our businesses?</p>\r\n</li>\r\n 	<li id=\"viewer-9e3ke\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What is the Redlands Coast of the future?</p>\r\n</li>\r\n 	<li id=\"viewer-bkg9g\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">How do we get there?</p>\r\n</li>\r\n</ul>\r\n<p id=\"viewer-6tnbi\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of outcomes from the Redland City workshop is offered below.</span></p>\r\n\r\n<div id=\"viewer-c72vk\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-148nq\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Emerging Issues Analysis</strong></span></p>\r\n<p id=\"viewer-121nf\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A scan of emerging issues across multiple systems showed the following:</span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-82ei4\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Social change globally and at all other levels, is driving changes in cities. Cities are doing their part to manage trends such as people from other cultures settling locally and needing to feel a sense of belonging. It is thought that this process can be aided by increasing awareness of diversity arrangements after considering and building special requirements for support, to help people live alongside one another and eventually to make important contributions to their communities.</p>\r\n</li>\r\n 	<li id=\"viewer-a7o03\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">With increasing populations, environmental change must include a focus on zero-waste disposal as the emerging problem of waste transfer is inefficient and could be better managed locally, through the management of product life-cycles, re-use or repair, and waste disposal. The issue for local governments is particularly about waste disposal though communities are starting up new repair stations that could re-enforce awareness about sustainable product development and use. This is timely as Australian shopping centres have already removed plastic shopping bags and the question remains – what else can be done in local governments to prevent waste?</p>\r\n</li>\r\n 	<li id=\"viewer-540dv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Economic emerging issues includes a decreased manufacturing industry in Australia. While jobs trends clearly show jobs have moved from this sector, jobs have rapidly grown in the professional administration, community and health sectors. As the automation industries will cause further job transfers, it is thought that new roles will be found in technology and innovation industries and in tourism.</p>\r\n</li>\r\n 	<li id=\"viewer-98qnv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Technology emerging issues include disruptive artificial intelligence and other products and services reliant on stronger digital networks such as 5G. Smart futures are emerging such as systems that use personalised and public data and this could lead to a constant flow of valued information if managed securely and safely.</p>\r\n</li>\r\n 	<li id=\"viewer-391kp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Transport emerging issues include the development of automated or upgraded fuel efficient renewable energy supplied vehicles. A range of issues coalesce here, including regulation, privacy, safety and how to manage roads to relieve congestion.</p>\r\n</li>\r\n</ul>\r\n<div id=\"viewer-av0l7\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-dg22b\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.jpg/v1/fill/w_1480,h_658,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.jpg/v1/fit/w_1000%2Ch_910%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n<span class=\"_3ULLf image-caption\" dir=\"auto\">Redland Coast in Transformation: Dr Colin Russo, Presenter with Redland\'s CEO and Executives</span></div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-dm8fm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ebf0v\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The Futures Triangle</strong></span></p>\r\n<p id=\"viewer-csedm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The Futures Triangle (Inayatullah), helps to map out prevalent futures such as business as usual futures and preferred futures. It works with the “pull of the future” such as desired city images, the “weights of the past or present” that would hold back the preferred image because of a power shift or lack of knowledge or direction, and the “drivers” which push us toward our image of the future.</span></p>\r\n\r\n<div id=\"viewer-2imcs\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ad4dm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of discussion from the Redland City group that applied The Futures Triangle, is offered below:</span></p>\r\n<p id=\"viewer-feffm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Social inclusion is the image of the future for community focussed Redland City. Redland as a fully integrated society offers equity of opportunity for residents and visitors. This future is challenged by ageing population demographics, immigration, the NDIS funding model and youth unemployment. Images of the future that prevent social inclusion are negative social media, a lack of choice in housing, lack of industrial variety in a narrow-based economy and conservative decision making reflecting short-term interests in the community.</span></p>\r\n\r\n<div id=\"viewer-4q31m\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-dbk8c\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.jpg/v1/fill/w_720,h_534,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-en6dn\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-6p3is\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s environmental pull of the future is toward a City that is green and clean, in terms of playing a role in the world and offering low scale urban bushland homes nearby a clean ocean of experiences, teaming with wildlife. Climate change advocates help to sustain this promise of clean clear waters, while legislation, awareness, technology and determination towards a waste minimalisation and zero disposal are the practices creating on the ground change. </span></p>\r\n\r\n<div id=\"viewer-bbii\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-17n1j\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Environmental weights in the city include industry development that takes little responsibility for effects of growth. Also, the financial cost of sustainability is high to restore damage and sustain ecology, while pollution is the risk to the City’s natural assets.</span></p>\r\n\r\n<div id=\"viewer-4g6qr\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-22vv1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland\'s economic images of the pull of the future for local government prioritise affordable living, economic diversity and sufficiency. These hopes pull the city toward an attractive bay style coastal lifestyle, with clean environment, bushland and village housing settings in a sub-tropical climate. Its urban setting brings health care facilities including aged care. Economic pushes drive the city toward affordable housing in attractive locations. Revenue sources from the State’s Capital City of Brisbane as a neighbouring city ensure constant interest in Redland City. Residents are attracted by development that occurs steadily in the City. </span></p>\r\n\r\n<div id=\"viewer-4hqrh\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-f1k4i\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s economic weights that hold the City to its steady rate of growth include its outer lying proximity to Brisbane, and the accessibility provided by its transport networks – Redland’s futures are linked to its resources and accesses being focused on local area networks rather than regional connectivity.</span></p>\r\n\r\n<div id=\"viewer-20pfj\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-7fda4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Technology in Redland City in ten to twenty years will bring residents and visitors easy access to information and data that meet expectations. Drivers for better technology are the rate of change, new products and services, increased social information through technology and education. Education is being driven by knowledge about remote, personalised community needs, and the promise of better technology to come. Weights to this future include privacy, regulations, time and knowledge of how to innovate, financial constraints and security standards. Interoperability of technology is key to creating and procuring the right kinds of technologies and datasets to match the City’s emerging needs.</span></p>\r\n\r\n<div id=\"viewer-62qvb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-dmt9r\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Transport pulls to the future, are about efficient and effective movement. </span></p>\r\n<p id=\"viewer-b10et\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The City is pushed toward efficiency with growth of its population, concerns for safety and interests in connected lifestyles. Weights to efficacious transport movement include regulations and aims for the region and State.</span></p>\r\n\r\n<div id=\"viewer-43vbb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-5dakq\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.jpg/v1/fill/w_720,h_480,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-214mt\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-b9su4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-6aoto\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-innu\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Organisational Scenarios Method</strong></span></p>\r\n<p id=\"viewer-24esa\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Prior to the Unicity Method, scenarios were created using the Organisational Scenario Method, from five tables including the CEO and 20 strategy leaders working on social, economic, environmental, transport and technology futures. Each group created four preferred future scenarios, and the name of each scenario is included below:</span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-enevj\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Social Preferred Future: “Challenged youth, to youth challenging”</p>\r\n</li>\r\n 	<li id=\"viewer-2n9qp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Environmental Preferred Future: “Our Environmental Investments are our Future”</p>\r\n</li>\r\n 	<li id=\"viewer-1v7ot\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Economic Preferred Future: “Quandamooka Heritage and Tourism”</p>\r\n</li>\r\n 	<li id=\"viewer-9n07u\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Transport Preferred Future: “Blue is the new Black”</p>\r\n</li>\r\n 	<li id=\"viewer-15il0\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Technology Preferred Future: “Development of A Sandbox Environment”</p>\r\n</li>\r\n</ul>\r\n<p id=\"viewer-2ntn2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The Unicity Method session was then used to clarify preferred futures generated from the Organisational Scenario Method. </span></p>\r\n\r\n<div id=\"viewer-cnc3s\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-1v24g\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_1wj_L IoEY5 IoEY5 _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.jpg/v1/fill/w_720,h_450,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-326ae\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-c75vr\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The Unicity Method</strong></span></p>\r\n<p id=\"viewer-6hvc7\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The following are some shifts in thinking that the Unicity Method helps with. When I last used the Unicity Method with the CEO of Deaf Services Queensland and deaf community members, it was with the awareness that the group wanted to explore their strengths, to make their current identity part of their preferred futures. This is one of the reasons I work with the method today. Here are other core reasons to use the Unicity Futures Method:</span></p>\r\n\r\n<ol class=\"public-DraftStyleDefault-ol\">\r\n 	<li id=\"viewer-8jrue\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We are unclear about our worth – we trade-off instead of trading up. Instead of always going one step forward and one step backward, we should be enhancing, or making a better world. For example, in climate change, cities create renewable energy supplies, but increase use of fossil fuels, or increase populations so that consumption remains the same. An alternative example, is using solar directly from rooftops instead of fossil fuelled electricity supplies from the grid, to operate electric vehicles.</p>\r\n</li>\r\n 	<li id=\"viewer-7vfen\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We forget what others are doing in other locations, so that we often reinvent the wheel, or lose valuable insights. We forget that the world we are heading into will have emerging possibilities and will not be the same way it is today, even across many core areas.</p>\r\n</li>\r\n 	<li id=\"viewer-cj3pk\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We don’t align our strengths and our strategies ways that focus our energies. We reject sustainability instead of making it a core principle of our plans and actions. Instead we spend more money on stand-alone actions to slow climate-change e.g. carbon sequestration / pollution filter machines, when other motors do not pollute the atmosphere. We often create projects without implementing actions that work with our visions.</p>\r\n</li>\r\n 	<li id=\"viewer-d7t9e\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We are slow to understand why existing strategies don’t work. We leave many strategies from other parties of the past, while we test new ones without learning from the past. We forget to deliver urgent time-saving projects while we focus on seemingly important actions. We try strategies from the past, but forget to generate appropriate new ones that give us more choice and adaptive agility.</p>\r\n</li>\r\n 	<li id=\"viewer-52qh2\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We forget to improve and evolve strategies that work well currently, and end up with a business as usual strategy that fails us tomorrow.</p>\r\n</li>\r\n</ol>\r\n<div id=\"viewer-39d04\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-eco28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Discussion from the Unicity Method</strong></span></p>\r\n<p id=\"viewer-57d96\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The discussion is collated here, under the main headings of the Unicity Method as they apply to Redland City’s workshop.</span></p>\r\n\r\n<div id=\"viewer-ck23e\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-bq805\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.jpg/v1/fill/w_1480,h_987,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-8u58r\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ei6b6\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Redland City is Unique for many reasons</strong></span></p>\r\n<p id=\"viewer-cpkd\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland City is near the Queensland State Capital of Brisbane with all of its institutions and facilities and connects “Minjerribah”, the traditional custodian’s name for the world class North Stradbroke Island. The Quandamooka people have inhabited the Island for more than 18,000 years, well before the arrival of Europeans in the late 1700’s. Redland was declared a Shire in 1949, and has emerged from its then population of 6,000 living within bushland to become a city of 155,000 who retain much of the bushland giving home to Australian wildlife. The City is protective of its Venman National Forest, Ramsar Wetlands and heritage listed sites. </span></p>\r\n\r\n<div id=\"viewer-1cics\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-8f303\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Redland will strive to retain its unique identity into the future</strong></span></p>\r\n<p id=\"viewer-3vgj5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">There is a strong feeling that Redland Coast should not only retain its social, environmental and economic values into the future, but will strengthen these values. For example, it will become better connected, and create the conditions for sustainability with more diversity of wildlife and wildlife corridors. Connections to Stradbroke Island will also be diversified while deepening appreciation of Redland City’s cultural and wildlife heritage.</span></p>\r\n\r\n<div id=\"viewer-htf\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-foakb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Universally accepted norms for this “naturally wonderful” city</strong></span></p>\r\n<p id=\"viewer-8gork\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland Coast is regarded to be a community focussed city with tourism and business supported by policies and governance that supports equality and inclusion.</span></p>\r\n\r\n<div id=\"viewer-uqv1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-3j5gv\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Preferred futures for what Redland’s is renowned for </strong></span></p>\r\n<p id=\"viewer-1u1d9\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland City’s naturally wonderful branding showcases the City as a naturally community and heritage focussed city, working on its adaptive and innovative capacities through better access, preservation of its cultural vibrancy and sub-tropical feeling, promotion of natural wonders, but also by promoting itself as a leader of equality and inclusion. It will emphasise its self-sustaining capacities and its future focus, as it connects with cities in the region, including Brisbane City.</span></p>\r\n\r\n<div id=\"viewer-d06b9\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-b2fr0\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>What unites Redland City’s communities in engagements that deliver current and near-term plans?</strong></span></p>\r\n<p id=\"viewer-fians\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s programs and practices unite stakeholders, residents and visitors with events and occurrences, environmental heritage and cultural depth of the mainland and beautiful North Stradbroke and nearby islands. Redland’s stakeholder and community engagement strategies build Redland’s identity and a sense of belonging which boosts community in all of its forms – communities of location, businesses and organisations, institutions, neighbouring and distant communities, and virtual communities.</span></p>\r\n<p id=\"viewer-b80h5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A possible near-term strategy, is an alternative community ownership program that builds shareholders in the community. This strategy would also share responsibility and accountability with Redland’s communities, conveying pride in place, heritage and hopes for the future.</span></p>\r\n<p id=\"viewer-at3m2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Social networks that contribute to the understanding of the City’s hopes would integrate community groups and help to engage them in future focused activities. These could include coastal and marine education, renewable energy practices, including awareness raising of the City’s possible interests in solar, wind and water driven renewable energy strategies. A further suggestion regarding community connection, is to employ locally, and this is suggested to reduce local traffic, while boosting local awareness and knowledge and commitment to strategies and project that would offer hope and support for Redland’s futures. </span></p>\r\n\r\n<div id=\"viewer-4o1in\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-bp0dc\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Uniting Redland’s people toward a preferred 2040 future</strong></span></p>\r\n<p id=\"viewer-b6s9d\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The group suggested that uniting community members would occur by investing in strategic marine opportunities, along with strategies to develop modern local jobs, better engagement with community and more transport linkages. The connection of social networks and community groups would support the City in raising awareness about futures that generate innovation hubs. Supportive infrastructure includes adapting toward the internet of things and 5G communication networks.</span></p>\r\n\r\n<div id=\"viewer-18uim\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-7kdkt\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>What would untie the City’s unique and preferred futures?</strong></span></p>\r\n<p id=\"viewer-ehmrk\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Core strategies for avoiding the untying of the City’s plans include: avoiding too much debt via efficiency of financial expenditure, avoiding delays and disasters by maintaining resource infrastructure, avoiding litigation issues by adhering to legislation and developing policies that supports the City’s aims. The City can also avoid distractions and delays by interfacing with government departments and anticipating their drivers, developing supportive politics, and appropriate funding and budgets.</span></p>\r\n\r\n<div id=\"viewer-d0sla\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-er08t\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The preferred future for Council approaches that would prevent weakening of the City’s strategic focus</strong></span></p>\r\n<p id=\"viewer-fukak\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The long-term preferred future for Redland City should seek to strengthen alignment between government agencies that can help Redland Coast to focus its efforts on completing significant projects that leave a lasting legacy. A focus on innovative and significant outcomes will help Redland Coast to deliver its aims of promoting a “naturally wonderful” city, while protecting its strategic assets. The City will strengthen and promote strategic support among stakeholders and help groups to become self-directed and self-sustaining and supportive of its aims. </span></p>\r\n\r\n<div id=\"viewer-fosg4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ac8q1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Unmet needs and strategies</strong></span></p>\r\n<p id=\"viewer-225m1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Near-term strategies include scattered approaches all around the city – programs and practices linked to events and social, economic and environmental outcomes. These strategies would empower Redland’s youth, develop transport links on land and water, such as a fast ferry from Brisbane. </span></p>\r\n\r\n<div id=\"viewer-cucio\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-5vbvu\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.jpg/v1/fill/w_720,h_468,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-f5g28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-75d28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Future Strategies</strong></span></p>\r\n<p id=\"viewer-faud2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland 2020-2040 strategies that emerged from the Unicity Method session are listed here. </span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-4gd93\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Showcase the environment in Redland Coast</p>\r\n</li>\r\n 	<li id=\"viewer-cs2qu\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Strengthen transport links from Brisbane to Redland Bay and North Stradbroke Island</p>\r\n</li>\r\n 	<li id=\"viewer-1bkn1\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Creation of a Youth Council</p>\r\n</li>\r\n 	<li id=\"viewer-dt1v5\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Ocean, Air and Rail links to Brisbane Airport</p>\r\n</li>\r\n 	<li id=\"viewer-4sq7u\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Marine-tech/Envirotech to create sustainable, renewable energy</p>\r\n</li>\r\n 	<li id=\"viewer-5rs4n\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Quandamooka People’s heritage and tourism strategy</p>\r\n</li>\r\n 	<li id=\"viewer-dmac1\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Engagement and better understanding of how the City’s work is delivered</p>\r\n</li>\r\n 	<li id=\"viewer-75dnm\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Joined/combined approaches</p>\r\n</li>\r\n 	<li id=\"viewer-5qit\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Youth participating in social initiatives to imagine alternative futures</p>\r\n</li>\r\n 	<li id=\"viewer-157mu\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Privacy Act for new technology – quadcopters and dataflow</p>\r\n</li>\r\n 	<li id=\"viewer-7amm2\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Fast ferry from Brisbane</p>\r\n</li>\r\n 	<li id=\"viewer-470oc\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Create Marine and Environmental Technology</p>\r\n</li>\r\n 	<li id=\"viewer-bqv68\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Facilitate commerce to solve ferry and other engineering solutions</p>\r\n</li>\r\n 	<li id=\"viewer-7j8lv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem\r\n   public-DraftStyleDefault-depth0\r\n   public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Demand responsive transport to access innovation and learning hubs</p>\r\n</li>\r\n</ul>\r\n<div id=\"viewer-316s6\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-7hehq\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_1wj_L IoEY5 IoEY5 _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.jpg/v1/fill/w_720,h_488,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n<span class=\"_3ULLf image-caption\" dir=\"auto\">\"Be Naturally Wonderful\" by protecting and working equitably with the environment and its people</span></div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-8hgcd\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ca74m\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of core Redland City 2020-2040 strategies that emerged from the Unicity Method session follow: </span></p>\r\n\r\n<div id=\"viewer-5ia19\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-5rnve\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Links from Brisbane to Redland Bay and North Stradbroke Island Creation of a Youth Council Ocean, Air and Rail links to Brisbane Airport Marine-tech/Envirotech to create sustainable, renewable energy Quandamooka People’s heritage and tourism strategy.</span></p>\r\n<p id=\"viewer-2igi9\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"></p>\r\n<p id=\"viewer-8jtg5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A Futures Thinking workshop sets out principles of strategic futures thinking for lessons supporting discussions of context and broader analysis. This foundation includes sector changes, stage of development of a sector (size, protocols, capacities in a market and community), emerging issues and possible futures - assumptions of the rate of growth and other contexts presented for consideration when creating preferred futures. Then, alternative futures, and a preferred future are able to be created, defined and broadened in context and scope. This solid foundation was generated by Redland City’s CEO and strategy leaders, and was clarified by applying the strategic futures method The Unicity Method. </span></p>\r\n\r\n<div id=\"viewer-e8kni\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-aqot8\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">It is suggested that further futures methods be used to assist the City, especially Causal Layered Analysis, which can be workshopped to deepen the preferred futures.</span></p>\r\n\r\n<div id=\"viewer-dpup3\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-7fsgj\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Special thanks to Andrew Chesterman, Angela Milne and team, for internal arrangements.</span></p>\r\n<p id=\"viewer-4r68i\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</article></div>', 'Redland City 2040: Futures Thinking and Strategy Transformation Workshop', '', 'inherit', 'closed', 'closed', '', '533-revision-v1', '', '', '2020-11-16 21:48:38', '2020-11-16 11:48:38', '', 533, 'http://localhost:8888/wordpress/2020/11/16/533-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(535, 1, '2020-11-16 21:50:52', '2020-11-16 11:50:52', '<div class=\"_1yEvn\">\n<div class=\"_2wZrM _1Ahim\" tabindex=\"-1\" data-hook=\"post-title\">\n<p class=\"_1gHzn _2M4wi blog-post-title-font blog-post-title-color blog-text-color post-title blog-hover-container-element-color _1EQZr blog-post-page-title-font\" data-hook=\"post-title\"><span style=\"font-size: 16px;\">CEO of Redland City Andrew Chesterman, and twenty executives created their City’s futures with Dr Colin Russo, Managing Director, Engaging Futures, presenter of the three-hour workshop ‘Redland City 2040: Futures Thinking and Strategy Transformation’, on 3 December 2018. Dr Russo presented Futures Thinking methods from the UNESCO Chair of Futures Studies, Professor Sohail Inayatullah’s Six Pillars of Futures Thinking. The methods included shared history, futures triangle, emerging issues analysis and alternative scenarios. Additionally, the group worked with Dr Russo’s Unicity Futures method. The method was created following terms from the article “Engaging Futures 2030 – Futures methods transforming governance” (Russo, 2015).</span></p>\n\n</div>\n</div>\n<div class=\"yF0IC\" data-hook=\"post-description\"><article class=\"blog-post-page-font\">\n<div class=\"post-content__body\">\n<div class=\"lV_uZ _1LHlu _1ltva\" data-rce-version=\"8.5.0\">\n<div class=\"kcuBq _1PkHV blog-post-page-font _3f8WX uatYj\" dir=\"ltr\">\n<div class=\"kaqlz _1FQ9t blog-post-page-font zJfAe\">\n<div id=\"viewer-1mg0o\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-38sjo\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-5ejtp\" class=\"q2uC4 _3kAGd\">\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.png/v1/fill/w_1401,h_997,al_c,q_90/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.png/v1/fit/w_1000%2Ch_997%2Cal_c%2Cq_80/file.png\" /></div>\n<div class=\"\"></div>\n<div class=\"\"></div>\n<span class=\"_3ULLf image-caption\" dir=\"auto\">CEO Andrew Chesterman - Clarifying Purpose and Shaping Futures</span>\n\n</div>\n</div>\n</div>\n<div id=\"viewer-798h\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-cordo\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">This workshop provided skills to shape the long-term futures of cities – map the future, anticipate emerging issues, understand long-term patterns of change, consequences of possible futures, and innovate and create new possibilities. The futures literacy and methods delivered in this workshop aimed to lead to new outcomes of preferred futures of Redland City. </span></p>\n<p id=\"viewer-cboup\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The workshop responded to critical futures questions, including:</span></p>\n\n<ul class=\"public-DraftStyleDefault-ul\">\n 	<li id=\"viewer-167dp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What are we doing to create and activate futures of Redlands Coast?</p>\n</li>\n 	<li id=\"viewer-9t4ok\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">How will emerging challenges impact Redlands Coast?</p>\n</li>\n 	<li id=\"viewer-2gkqp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What are the factors that impact our ability to apply ‘futures thinking’ to our businesses?</p>\n</li>\n 	<li id=\"viewer-9e3ke\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What is the Redlands Coast of the future?</p>\n</li>\n 	<li id=\"viewer-bkg9g\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">How do we get there?</p>\n</li>\n</ul>\n<p id=\"viewer-6tnbi\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of outcomes from the Redland City workshop is offered below.</span></p>\n\n<div id=\"viewer-c72vk\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-148nq\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Emerging Issues Analysis</strong></span></p>\n<p id=\"viewer-121nf\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A scan of emerging issues across multiple systems showed the following:</span></p>\n\n<ul class=\"public-DraftStyleDefault-ul\">\n 	<li id=\"viewer-82ei4\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Social change globally and at all other levels, is driving changes in cities. Cities are doing their part to manage trends such as people from other cultures settling locally and needing to feel a sense of belonging. It is thought that this process can be aided by increasing awareness of diversity arrangements after considering and building special requirements for support, to help people live alongside one another and eventually to make important contributions to their communities.</p>\n</li>\n 	<li id=\"viewer-a7o03\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">With increasing populations, environmental change must include a focus on zero-waste disposal as the emerging problem of waste transfer is inefficient and could be better managed locally, through the management of product life-cycles, re-use or repair, and waste disposal. The issue for local governments is particularly about waste disposal though communities are starting up new repair stations that could re-enforce awareness about sustainable product development and use. This is timely as Australian shopping centres have already removed plastic shopping bags and the question remains – what else can be done in local governments to prevent waste?</p>\n</li>\n 	<li id=\"viewer-540dv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Economic emerging issues includes a decreased manufacturing industry in Australia. While jobs trends clearly show jobs have moved from this sector, jobs have rapidly grown in the professional administration, community and health sectors. As the automation industries will cause further job transfers, it is thought that new roles will be found in technology and innovation industries and in tourism.</p>\n</li>\n 	<li id=\"viewer-98qnv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Technology emerging issues include disruptive artificial intelligence and other products and services reliant on stronger digital networks such as 5G. Smart futures are emerging such as systems that use personalised and public data and this could lead to a constant flow of valued information if managed securely and safely.</p>\n</li>\n 	<li id=\"viewer-391kp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Transport emerging issues include the development of automated or upgraded fuel efficient renewable energy supplied vehicles. A range of issues coalesce here, including regulation, privacy, safety and how to manage roads to relieve congestion.</p>\n</li>\n</ul>\n<div id=\"viewer-av0l7\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-dg22b\" class=\"q2uC4 _3kAGd\">\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.jpg/v1/fill/w_1480,h_658,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.jpg/v1/fit/w_1000%2Ch_910%2Cal_c%2Cq_80/file.png\" /></div>\n<div class=\"\"></div>\n<div class=\"\"></div>\n<span class=\"_3ULLf image-caption\" dir=\"auto\">Redland Coast in Transformation: Dr Colin Russo, Presenter with Redland\'s CEO and Executives</span>\n\n</div>\n</div>\n</div>\n<div id=\"viewer-dm8fm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-ebf0v\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The Futures Triangle</strong></span></p>\n<p id=\"viewer-csedm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The Futures Triangle (Inayatullah), helps to map out prevalent futures such as business as usual futures and preferred futures. It works with the “pull of the future” such as desired city images, the “weights of the past or present” that would hold back the preferred image because of a power shift or lack of knowledge or direction, and the “drivers” which push us toward our image of the future.</span></p>\n\n<div id=\"viewer-2imcs\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-ad4dm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of discussion from the Redland City group that applied The Futures Triangle, is offered below:</span></p>\n<p id=\"viewer-feffm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Social inclusion is the image of the future for community focussed Redland City. Redland as a fully integrated society offers equity of opportunity for residents and visitors. This future is challenged by ageing population demographics, immigration, the NDIS funding model and youth unemployment. Images of the future that prevent social inclusion are negative social media, a lack of choice in housing, lack of industrial variety in a narrow-based economy and conservative decision making reflecting short-term interests in the community.</span></p>\n\n<div id=\"viewer-4q31m\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-dbk8c\" class=\"q2uC4 _3kAGd\">\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.jpg/v1/fill/w_720,h_534,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\n<div class=\"\"></div>\n<div class=\"\"></div>\n</div>\n</div>\n</div>\n<div id=\"viewer-en6dn\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-6p3is\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s environmental pull of the future is toward a City that is green and clean, in terms of playing a role in the world and offering low scale urban bushland homes nearby a clean ocean of experiences, teaming with wildlife. Climate change advocates help to sustain this promise of clean clear waters, while legislation, awareness, technology and determination towards a waste minimalisation and zero disposal are the practices creating on the ground change. </span></p>\n\n<div id=\"viewer-bbii\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-17n1j\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Environmental weights in the city include industry development that takes little responsibility for effects of growth. Also, the financial cost of sustainability is high to restore damage and sustain ecology, while pollution is the risk to the City’s natural assets.</span></p>\n\n<div id=\"viewer-4g6qr\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-22vv1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland\'s economic images of the pull of the future for local government prioritise affordable living, economic diversity and sufficiency. These hopes pull the city toward an attractive bay style coastal lifestyle, with clean environment, bushland and village housing settings in a sub-tropical climate. Its urban setting brings health care facilities including aged care. Economic pushes drive the city toward affordable housing in attractive locations. Revenue sources from the State’s Capital City of Brisbane as a neighbouring city ensure constant interest in Redland City. Residents are attracted by development that occurs steadily in the City. </span></p>\n\n<div id=\"viewer-4hqrh\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-f1k4i\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s economic weights that hold the City to its steady rate of growth include its outer lying proximity to Brisbane, and the accessibility provided by its transport networks – Redland’s futures are linked to its resources and accesses being focused on local area networks rather than regional connectivity.</span></p>\n\n<div id=\"viewer-20pfj\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-7fda4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Technology in Redland City in ten to twenty years will bring residents and visitors easy access to information and data that meet expectations. Drivers for better technology are the rate of change, new products and services, increased social information through technology and education. Education is being driven by knowledge about remote, personalised community needs, and the promise of better technology to come. Weights to this future include privacy, regulations, time and knowledge of how to innovate, financial constraints and security standards. Interoperability of technology is key to creating and procuring the right kinds of technologies and datasets to match the City’s emerging needs.</span></p>\n\n<div id=\"viewer-62qvb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-dmt9r\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Transport pulls to the future, are about efficient and effective movement. </span></p>\n<p id=\"viewer-b10et\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The City is pushed toward efficiency with growth of its population, concerns for safety and interests in connected lifestyles. Weights to efficacious transport movement include regulations and aims for the region and State.</span></p>\n\n<div id=\"viewer-43vbb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-5dakq\" class=\"q2uC4 _3kAGd\">\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.jpg/v1/fill/w_720,h_480,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\n<div class=\"\"></div>\n<div class=\"\"></div>\n</div>\n</div>\n</div>\n<div id=\"viewer-214mt\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-b9su4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-6aoto\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-innu\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Organisational Scenarios Method</strong></span></p>\n<p id=\"viewer-24esa\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Prior to the Unicity Method, scenarios were created using the Organisational Scenario Method, from five tables including the CEO and 20 strategy leaders working on social, economic, environmental, transport and technology futures. Each group created four preferred future scenarios, and the name of each scenario is included below:</span></p>\n\n<ul class=\"public-DraftStyleDefault-ul\">\n 	<li id=\"viewer-enevj\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Social Preferred Future: “Challenged youth, to youth challenging”</p>\n</li>\n 	<li id=\"viewer-2n9qp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Environmental Preferred Future: “Our Environmental Investments are our Future”</p>\n</li>\n 	<li id=\"viewer-1v7ot\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Economic Preferred Future: “Quandamooka Heritage and Tourism”</p>\n</li>\n 	<li id=\"viewer-9n07u\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Transport Preferred Future: “Blue is the new Black”</p>\n</li>\n 	<li id=\"viewer-15il0\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Technology Preferred Future: “Development of A Sandbox Environment”</p>\n</li>\n</ul>\n<p id=\"viewer-2ntn2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The Unicity Method session was then used to clarify preferred futures generated from the Organisational Scenario Method. </span></p>\n\n<div id=\"viewer-cnc3s\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-1v24g\" class=\"q2uC4 _3kAGd\">\n<div class=\"_1wj_L IoEY5 IoEY5 _2fU6C _1jlZ9 _1jlZ9\">\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.jpg/v1/fill/w_720,h_450,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\n<div class=\"\"></div>\n<div class=\"\"></div>\n</div>\n</div>\n</div>\n<div id=\"viewer-326ae\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-c75vr\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The Unicity Method</strong></span></p>\n<p id=\"viewer-6hvc7\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The following are some shifts in thinking that the Unicity Method helps with. When I last used the Unicity Method with the CEO of Deaf Services Queensland and deaf community members, it was with the awareness that the group wanted to explore their strengths, to make their current identity part of their preferred futures. This is one of the reasons I work with the method today. Here are other core reasons to use the Unicity Futures Method:</span></p>\n\n<ol class=\"public-DraftStyleDefault-ol\">\n 	<li id=\"viewer-8jrue\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We are unclear about our worth – we trade-off instead of trading up. Instead of always going one step forward and one step backward, we should be enhancing, or making a better world. For example, in climate change, cities create renewable energy supplies, but increase use of fossil fuels, or increase populations so that consumption remains the same. An alternative example, is using solar directly from rooftops instead of fossil fuelled electricity supplies from the grid, to operate electric vehicles.</p>\n</li>\n 	<li id=\"viewer-7vfen\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We forget what others are doing in other locations, so that we often reinvent the wheel, or lose valuable insights. We forget that the world we are heading into will have emerging possibilities and will not be the same way it is today, even across many core areas.</p>\n</li>\n 	<li id=\"viewer-cj3pk\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We don’t align our strengths and our strategies ways that focus our energies. We reject sustainability instead of making it a core principle of our plans and actions. Instead we spend more money on stand-alone actions to slow climate-change e.g. carbon sequestration / pollution filter machines, when other motors do not pollute the atmosphere. We often create projects without implementing actions that work with our visions.</p>\n</li>\n 	<li id=\"viewer-d7t9e\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We are slow to understand why existing strategies don’t work. We leave many strategies from other parties of the past, while we test new ones without learning from the past. We forget to deliver urgent time-saving projects while we focus on seemingly important actions. We try strategies from the past, but forget to generate appropriate new ones that give us more choice and adaptive agility.</p>\n</li>\n 	<li id=\"viewer-52qh2\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We forget to improve and evolve strategies that work well currently, and end up with a business as usual strategy that fails us tomorrow.</p>\n</li>\n</ol>\n<div id=\"viewer-39d04\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-eco28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Discussion from the Unicity Method</strong></span></p>\n<p id=\"viewer-57d96\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The discussion is collated here, under the main headings of the Unicity Method as they apply to Redland City’s workshop.</span></p>\n\n<div id=\"viewer-ck23e\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-bq805\" class=\"q2uC4 _3kAGd\">\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.jpg/v1/fill/w_1480,h_987,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\n<div class=\"\"></div>\n<div class=\"\"></div>\n</div>\n</div>\n</div>\n<div id=\"viewer-8u58r\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-ei6b6\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Redland City is Unique for many reasons</strong></span></p>\n<p id=\"viewer-cpkd\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland City is near the Queensland State Capital of Brisbane with all of its institutions and facilities and connects “Minjerribah”, the traditional custodian’s name for the world class North Stradbroke Island. The Quandamooka people have inhabited the Island for more than 18,000 years, well before the arrival of Europeans in the late 1700’s. Redland was declared a Shire in 1949, and has emerged from its then population of 6,000 living within bushland to become a city of 155,000 who retain much of the bushland giving home to Australian wildlife. The City is protective of its Venman National Forest, Ramsar Wetlands and heritage listed sites. </span></p>\n\n<div id=\"viewer-1cics\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-8f303\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Redland will strive to retain its unique identity into the future</strong></span></p>\n<p id=\"viewer-3vgj5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">There is a strong feeling that Redland Coast should not only retain its social, environmental and economic values into the future, but will strengthen these values. For example, it will become better connected, and create the conditions for sustainability with more diversity of wildlife and wildlife corridors. Connections to Stradbroke Island will also be diversified while deepening appreciation of Redland City’s cultural and wildlife heritage.</span></p>\n\n<div id=\"viewer-htf\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-foakb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Universally accepted norms for this “naturally wonderful” city</strong></span></p>\n<p id=\"viewer-8gork\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland Coast is regarded to be a community focussed city with tourism and business supported by policies and governance that supports equality and inclusion.</span></p>\n\n<div id=\"viewer-uqv1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-3j5gv\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Preferred futures for what Redland’s is renowned for </strong></span></p>\n<p id=\"viewer-1u1d9\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland City’s naturally wonderful branding showcases the City as a naturally community and heritage focussed city, working on its adaptive and innovative capacities through better access, preservation of its cultural vibrancy and sub-tropical feeling, promotion of natural wonders, but also by promoting itself as a leader of equality and inclusion. It will emphasise its self-sustaining capacities and its future focus, as it connects with cities in the region, including Brisbane City.</span></p>\n\n<div id=\"viewer-d06b9\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-b2fr0\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>What unites Redland City’s communities in engagements that deliver current and near-term plans?</strong></span></p>\n<p id=\"viewer-fians\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s programs and practices unite stakeholders, residents and visitors with events and occurrences, environmental heritage and cultural depth of the mainland and beautiful North Stradbroke and nearby islands. Redland’s stakeholder and community engagement strategies build Redland’s identity and a sense of belonging which boosts community in all of its forms – communities of location, businesses and organisations, institutions, neighbouring and distant communities, and virtual communities.</span></p>\n<p id=\"viewer-b80h5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A possible near-term strategy, is an alternative community ownership program that builds shareholders in the community. This strategy would also share responsibility and accountability with Redland’s communities, conveying pride in place, heritage and hopes for the future.</span></p>\n<p id=\"viewer-at3m2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Social networks that contribute to the understanding of the City’s hopes would integrate community groups and help to engage them in future focused activities. These could include coastal and marine education, renewable energy practices, including awareness raising of the City’s possible interests in solar, wind and water driven renewable energy strategies. A further suggestion regarding community connection, is to employ locally, and this is suggested to reduce local traffic, while boosting local awareness and knowledge and commitment to strategies and project that would offer hope and support for Redland’s futures. </span></p>\n\n<div id=\"viewer-4o1in\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-bp0dc\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Uniting Redland’s people toward a preferred 2040 future</strong></span></p>\n<p id=\"viewer-b6s9d\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The group suggested that uniting community members would occur by investing in strategic marine opportunities, along with strategies to develop modern local jobs, better engagement with community and more transport linkages. The connection of social networks and community groups would support the City in raising awareness about futures that generate innovation hubs. Supportive infrastructure includes adapting toward the internet of things and 5G communication networks.</span></p>\n\n<div id=\"viewer-18uim\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-7kdkt\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>What would untie the City’s unique and preferred futures?</strong></span></p>\n<p id=\"viewer-ehmrk\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Core strategies for avoiding the untying of the City’s plans include: avoiding too much debt via efficiency of financial expenditure, avoiding delays and disasters by maintaining resource infrastructure, avoiding litigation issues by adhering to legislation and developing policies that supports the City’s aims. The City can also avoid distractions and delays by interfacing with government departments and anticipating their drivers, developing supportive politics, and appropriate funding and budgets.</span></p>\n\n<div id=\"viewer-d0sla\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-er08t\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The preferred future for Council approaches that would prevent weakening of the City’s strategic focus</strong></span></p>\n<p id=\"viewer-fukak\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The long-term preferred future for Redland City should seek to strengthen alignment between government agencies that can help Redland Coast to focus its efforts on completing significant projects that leave a lasting legacy. A focus on innovative and significant outcomes will help Redland Coast to deliver its aims of promoting a “naturally wonderful” city, while protecting its strategic assets. The City will strengthen and promote strategic support among stakeholders and help groups to become self-directed and self-sustaining and supportive of its aims. </span></p>\n\n<div id=\"viewer-fosg4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-ac8q1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Unmet needs and strategies</strong></span></p>\n<p id=\"viewer-225m1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Near-term strategies include scattered approaches all around the city – programs and practices linked to events and social, economic and environmental outcomes. These strategies would empower Redland’s youth, develop transport links on land and water, such as a fast ferry from Brisbane. </span></p>\n\n<div id=\"viewer-cucio\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-5vbvu\" class=\"q2uC4 _3kAGd\">\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.jpg/v1/fill/w_720,h_468,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\n<div class=\"\"></div>\n<div class=\"\"></div>\n</div>\n</div>\n</div>\n<div id=\"viewer-f5g28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-75d28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Future Strategies</strong></span></p>\n<p id=\"viewer-faud2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland 2020-2040 strategies that emerged from the Unicity Method session are listed here. </span></p>\n\n<ul class=\"public-DraftStyleDefault-ul\">\n 	<li id=\"viewer-4gd93\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Showcase the environment in Redland Coast</p>\n</li>\n 	<li id=\"viewer-cs2qu\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Strengthen transport links from Brisbane to Redland Bay and North Stradbroke Island</p>\n</li>\n 	<li id=\"viewer-1bkn1\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Creation of a Youth Council</p>\n</li>\n 	<li id=\"viewer-dt1v5\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Ocean, Air and Rail links to Brisbane Airport</p>\n</li>\n 	<li id=\"viewer-4sq7u\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Marine-tech/Envirotech to create sustainable, renewable energy</p>\n</li>\n 	<li id=\"viewer-5rs4n\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Quandamooka People’s heritage and tourism strategy</p>\n</li>\n 	<li id=\"viewer-dmac1\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Engagement and better understanding of how the City’s work is delivered</p>\n</li>\n 	<li id=\"viewer-75dnm\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Joined/combined approaches</p>\n</li>\n 	<li id=\"viewer-5qit\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Youth participating in social initiatives to imagine alternative futures</p>\n</li>\n 	<li id=\"viewer-157mu\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Privacy Act for new technology – quadcopters and dataflow</p>\n</li>\n 	<li id=\"viewer-7amm2\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Fast ferry from Brisbane</p>\n</li>\n 	<li id=\"viewer-470oc\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Create Marine and Environmental Technology</p>\n</li>\n 	<li id=\"viewer-bqv68\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Facilitate commerce to solve ferry and other engineering solutions</p>\n</li>\n 	<li id=\"viewer-7j8lv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Demand responsive transport to access innovation and learning hubs</p>\n</li>\n</ul>\n<div id=\"viewer-316s6\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<div id=\"viewer-7hehq\" class=\"q2uC4 _3kAGd\">\n<div class=\"_1wj_L IoEY5 IoEY5 _2fU6C _1jlZ9 _1jlZ9\">\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.jpg/v1/fill/w_720,h_488,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\n<div class=\"\"></div>\n<div class=\"\"></div>\n<span class=\"_3ULLf image-caption\" dir=\"auto\">\"Be Naturally Wonderful\" by protecting and working equitably with the environment and its people</span>\n\n</div>\n</div>\n</div>\n<div id=\"viewer-8hgcd\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-ca74m\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of core Redland City 2020-2040 strategies that emerged from the Unicity Method session follow: </span></p>\n\n<div id=\"viewer-5ia19\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-5rnve\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Links from Brisbane to Redland Bay and North Stradbroke Island Creation of a Youth Council Ocean, Air and Rail links to Brisbane Airport Marine-tech/Envirotech to create sustainable, renewable energy Quandamooka People’s heritage and tourism strategy.</span></p>\n<p id=\"viewer-8jtg5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A Futures Thinking workshop sets out principles of strategic futures thinking for lessons supporting discussions of context and broader analysis. This foundation includes sector changes, stage of development of a sector (size, protocols, capacities in a market and community), emerging issues and possible futures - assumptions of the rate of growth and other contexts presented for consideration when creating preferred futures. Then, alternative futures, and a preferred future are able to be created, defined and broadened in context and scope. This solid foundation was generated by Redland City’s CEO and strategy leaders, and was clarified by applying the strategic futures method The Unicity Method. </span></p>\n\n<div id=\"viewer-e8kni\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-aqot8\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">It is suggested that further futures methods be used to assist the City, especially Causal Layered Analysis, which can be workshopped to deepen the preferred futures.</span></p>\n\n<div id=\"viewer-dpup3\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\n<p id=\"viewer-7fsgj\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Special thanks to Andrew Chesterman, Angela Milne and team, for internal arrangements.</span></p>\n<p id=\"viewer-4r68i\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"></p>\n\n</div>\n</div>\n</div>\n</div>\n</article></div>', 'Redland City 2040: Futures Thinking and Strategy Transformation Workshop', '', 'inherit', 'closed', 'closed', '', '533-autosave-v1', '', '', '2020-11-16 21:50:52', '2020-11-16 11:50:52', '', 533, 'http://localhost:8888/wordpress/2020/11/16/533-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(536, 1, '2020-11-16 21:58:26', '2020-11-16 11:58:26', '', 'Stradbroke Island', '', 'inherit', 'open', 'closed', '', 'stradbroke-island', '', '', '2020-11-16 21:58:26', '2020-11-16 11:58:26', '', 533, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Stradbroke-Island.jpeg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(537, 1, '2020-11-16 21:58:42', '2020-11-16 11:58:42', '<div class=\"_1yEvn\">\r\n<div class=\"_2wZrM _1Ahim\" tabindex=\"-1\" data-hook=\"post-title\">\r\n<p class=\"_1gHzn _2M4wi blog-post-title-font blog-post-title-color blog-text-color post-title blog-hover-container-element-color _1EQZr blog-post-page-title-font\" data-hook=\"post-title\"><span style=\"font-size: 16px;\">CEO of Redland City Andrew Chesterman, and twenty executives created their City’s futures with Dr Colin Russo, Managing Director, Engaging Futures, presenter of the three-hour workshop ‘Redland City 2040: Futures Thinking and Strategy Transformation’, on 3 December 2018. Dr Russo presented Futures Thinking methods from the UNESCO Chair of Futures Studies, Professor Sohail Inayatullah’s Six Pillars of Futures Thinking. The methods included shared history, futures triangle, emerging issues analysis and alternative scenarios. Additionally, the group worked with Dr Russo’s Unicity Futures method. The method was created following terms from the article “Engaging Futures 2030 – Futures methods transforming governance” (Russo, 2015).</span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"yF0IC\" data-hook=\"post-description\"><article class=\"blog-post-page-font\">\r\n<div class=\"post-content__body\">\r\n<div class=\"lV_uZ _1LHlu _1ltva\" data-rce-version=\"8.5.0\">\r\n<div class=\"kcuBq _1PkHV blog-post-page-font _3f8WX uatYj\" dir=\"ltr\">\r\n<div class=\"kaqlz _1FQ9t blog-post-page-font zJfAe\">\r\n<div id=\"viewer-1mg0o\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-38sjo\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-5ejtp\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.png/v1/fill/w_1401,h_997,al_c,q_90/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_b9666936f8dc4957a65cadf8cf40fc70~mv2.png/v1/fit/w_1000%2Ch_997%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n<span class=\"_3ULLf image-caption\" dir=\"auto\">CEO Andrew Chesterman - Clarifying Purpose and Shaping Futures</span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-798h\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-cordo\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">This workshop provided skills to shape the long-term futures of cities – map the future, anticipate emerging issues, understand long-term patterns of change, consequences of possible futures, and innovate and create new possibilities. The futures literacy and methods delivered in this workshop aimed to lead to new outcomes of preferred futures of Redland City. </span></p>\r\n<p id=\"viewer-cboup\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The workshop responded to critical futures questions, including:</span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-167dp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What are we doing to create and activate futures of Redlands Coast?</p>\r\n</li>\r\n 	<li id=\"viewer-9t4ok\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">How will emerging challenges impact Redlands Coast?</p>\r\n</li>\r\n 	<li id=\"viewer-2gkqp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What are the factors that impact our ability to apply ‘futures thinking’ to our businesses?</p>\r\n</li>\r\n 	<li id=\"viewer-9e3ke\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">What is the Redlands Coast of the future?</p>\r\n</li>\r\n 	<li id=\"viewer-bkg9g\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">How do we get there?</p>\r\n</li>\r\n</ul>\r\n<p id=\"viewer-6tnbi\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of outcomes from the Redland City workshop is offered below.</span></p>\r\n\r\n<div id=\"viewer-c72vk\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-148nq\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Emerging Issues Analysis</strong></span></p>\r\n<p id=\"viewer-121nf\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A scan of emerging issues across multiple systems showed the following:</span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-82ei4\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Social change globally and at all other levels, is driving changes in cities. Cities are doing their part to manage trends such as people from other cultures settling locally and needing to feel a sense of belonging. It is thought that this process can be aided by increasing awareness of diversity arrangements after considering and building special requirements for support, to help people live alongside one another and eventually to make important contributions to their communities.</p>\r\n</li>\r\n 	<li id=\"viewer-a7o03\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">With increasing populations, environmental change must include a focus on zero-waste disposal as the emerging problem of waste transfer is inefficient and could be better managed locally, through the management of product life-cycles, re-use or repair, and waste disposal. The issue for local governments is particularly about waste disposal though communities are starting up new repair stations that could re-enforce awareness about sustainable product development and use. This is timely as Australian shopping centres have already removed plastic shopping bags and the question remains – what else can be done in local governments to prevent waste?</p>\r\n</li>\r\n 	<li id=\"viewer-540dv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Economic emerging issues includes a decreased manufacturing industry in Australia. While jobs trends clearly show jobs have moved from this sector, jobs have rapidly grown in the professional administration, community and health sectors. As the automation industries will cause further job transfers, it is thought that new roles will be found in technology and innovation industries and in tourism.</p>\r\n</li>\r\n 	<li id=\"viewer-98qnv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Technology emerging issues include disruptive artificial intelligence and other products and services reliant on stronger digital networks such as 5G. Smart futures are emerging such as systems that use personalised and public data and this could lead to a constant flow of valued information if managed securely and safely.</p>\r\n</li>\r\n 	<li id=\"viewer-391kp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Transport emerging issues include the development of automated or upgraded fuel efficient renewable energy supplied vehicles. A range of issues coalesce here, including regulation, privacy, safety and how to manage roads to relieve congestion.</p>\r\n</li>\r\n</ul>\r\n<div id=\"viewer-av0l7\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-dg22b\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.jpg/v1/fill/w_1480,h_658,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_d044a25930a84f5dae716519a6ba5a07~mv2.jpg/v1/fit/w_1000%2Ch_910%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n<span class=\"_3ULLf image-caption\" dir=\"auto\">Redland Coast in Transformation: Dr Colin Russo, Presenter with Redland\'s CEO and Executives</span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-dm8fm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ebf0v\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The Futures Triangle</strong></span></p>\r\n<p id=\"viewer-csedm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The Futures Triangle (Inayatullah), helps to map out prevalent futures such as business as usual futures and preferred futures. It works with the “pull of the future” such as desired city images, the “weights of the past or present” that would hold back the preferred image because of a power shift or lack of knowledge or direction, and the “drivers” which push us toward our image of the future.</span></p>\r\n\r\n<div id=\"viewer-2imcs\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ad4dm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of discussion from the Redland City group that applied The Futures Triangle, is offered below:</span></p>\r\n<p id=\"viewer-feffm\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Social inclusion is the image of the future for community focussed Redland City. Redland as a fully integrated society offers equity of opportunity for residents and visitors. This future is challenged by ageing population demographics, immigration, the NDIS funding model and youth unemployment. Images of the future that prevent social inclusion are negative social media, a lack of choice in housing, lack of industrial variety in a narrow-based economy and conservative decision making reflecting short-term interests in the community.</span></p>\r\n\r\n<div id=\"viewer-4q31m\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-dbk8c\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.jpg/v1/fill/w_720,h_534,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_1ac85e1b91214319ba7155ab0f1e55ad~mv2_d_1920_1423_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-en6dn\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-6p3is\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s environmental pull of the future is toward a City that is green and clean, in terms of playing a role in the world and offering low scale urban bushland homes nearby a clean ocean of experiences, teaming with wildlife. Climate change advocates help to sustain this promise of clean clear waters, while legislation, awareness, technology and determination towards a waste minimalisation and zero disposal are the practices creating on the ground change. </span></p>\r\n\r\n<div id=\"viewer-bbii\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-17n1j\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Environmental weights in the city include industry development that takes little responsibility for effects of growth. Also, the financial cost of sustainability is high to restore damage and sustain ecology, while pollution is the risk to the City’s natural assets.</span></p>\r\n\r\n<div id=\"viewer-4g6qr\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-22vv1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland\'s economic images of the pull of the future for local government prioritise affordable living, economic diversity and sufficiency. These hopes pull the city toward an attractive bay style coastal lifestyle, with clean environment, bushland and village housing settings in a sub-tropical climate. Its urban setting brings health care facilities including aged care. Economic pushes drive the city toward affordable housing in attractive locations. Revenue sources from the State’s Capital City of Brisbane as a neighbouring city ensure constant interest in Redland City. Residents are attracted by development that occurs steadily in the City. </span></p>\r\n\r\n<div id=\"viewer-4hqrh\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-f1k4i\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s economic weights that hold the City to its steady rate of growth include its outer lying proximity to Brisbane, and the accessibility provided by its transport networks – Redland’s futures are linked to its resources and accesses being focused on local area networks rather than regional connectivity.</span></p>\r\n\r\n<div id=\"viewer-20pfj\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-7fda4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Technology in Redland City in ten to twenty years will bring residents and visitors easy access to information and data that meet expectations. Drivers for better technology are the rate of change, new products and services, increased social information through technology and education. Education is being driven by knowledge about remote, personalised community needs, and the promise of better technology to come. Weights to this future include privacy, regulations, time and knowledge of how to innovate, financial constraints and security standards. Interoperability of technology is key to creating and procuring the right kinds of technologies and datasets to match the City’s emerging needs.</span></p>\r\n\r\n<div id=\"viewer-62qvb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-dmt9r\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Transport pulls to the future, are about efficient and effective movement. </span></p>\r\n<p id=\"viewer-b10et\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The City is pushed toward efficiency with growth of its population, concerns for safety and interests in connected lifestyles. Weights to efficacious transport movement include regulations and aims for the region and State.</span></p>\r\n\r\n<div id=\"viewer-43vbb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-5dakq\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.jpg/v1/fill/w_720,h_480,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_bf4971cc39c64d9f84b5f8766bf000f6~mv2_d_1920_1280_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-214mt\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-b9su4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-6aoto\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-innu\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Organisational Scenarios Method</strong></span></p>\r\n<p id=\"viewer-24esa\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Prior to the Unicity Method, scenarios were created using the Organisational Scenario Method, from five tables including the CEO and 20 strategy leaders working on social, economic, environmental, transport and technology futures. Each group created four preferred future scenarios, and the name of each scenario is included below:</span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-enevj\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Social Preferred Future: “Challenged youth, to youth challenging”</p>\r\n</li>\r\n 	<li id=\"viewer-2n9qp\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Environmental Preferred Future: “Our Environmental Investments are our Future”</p>\r\n</li>\r\n 	<li id=\"viewer-1v7ot\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Economic Preferred Future: “Quandamooka Heritage and Tourism”</p>\r\n</li>\r\n 	<li id=\"viewer-9n07u\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Transport Preferred Future: “Blue is the new Black”</p>\r\n</li>\r\n 	<li id=\"viewer-15il0\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Technology Preferred Future: “Development of A Sandbox Environment”</p>\r\n</li>\r\n</ul>\r\n<p id=\"viewer-2ntn2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The Unicity Method session was then used to clarify preferred futures generated from the Organisational Scenario Method. </span></p>\r\n\r\n<div id=\"viewer-cnc3s\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-1v24g\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_1wj_L IoEY5 IoEY5 _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.jpg/v1/fill/w_720,h_450,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_2428d9dc31574cfdb762d7511496a3ad~mv2_d_5184_3240_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-326ae\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-c75vr\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The Unicity Method</strong></span></p>\r\n<p id=\"viewer-6hvc7\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The following are some shifts in thinking that the Unicity Method helps with. When I last used the Unicity Method with the CEO of Deaf Services Queensland and deaf community members, it was with the awareness that the group wanted to explore their strengths, to make their current identity part of their preferred futures. This is one of the reasons I work with the method today. Here are other core reasons to use the Unicity Futures Method:</span></p>\r\n\r\n<ol class=\"public-DraftStyleDefault-ol\">\r\n 	<li id=\"viewer-8jrue\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We are unclear about our worth – we trade-off instead of trading up. Instead of always going one step forward and one step backward, we should be enhancing, or making a better world. For example, in climate change, cities create renewable energy supplies, but increase use of fossil fuels, or increase populations so that consumption remains the same. An alternative example, is using solar directly from rooftops instead of fossil fuelled electricity supplies from the grid, to operate electric vehicles.</p>\r\n</li>\r\n 	<li id=\"viewer-7vfen\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We forget what others are doing in other locations, so that we often reinvent the wheel, or lose valuable insights. We forget that the world we are heading into will have emerging possibilities and will not be the same way it is today, even across many core areas.</p>\r\n</li>\r\n 	<li id=\"viewer-cj3pk\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We don’t align our strengths and our strategies ways that focus our energies. We reject sustainability instead of making it a core principle of our plans and actions. Instead we spend more money on stand-alone actions to slow climate-change e.g. carbon sequestration / pollution filter machines, when other motors do not pollute the atmosphere. We often create projects without implementing actions that work with our visions.</p>\r\n</li>\r\n 	<li id=\"viewer-d7t9e\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We are slow to understand why existing strategies don’t work. We leave many strategies from other parties of the past, while we test new ones without learning from the past. We forget to deliver urgent time-saving projects while we focus on seemingly important actions. We try strategies from the past, but forget to generate appropriate new ones that give us more choice and adaptive agility.</p>\r\n</li>\r\n 	<li id=\"viewer-52qh2\" class=\"ljrnk _1QOLZ public-DraftStyleDefault-orderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">We forget to improve and evolve strategies that work well currently, and end up with a business as usual strategy that fails us tomorrow.</p>\r\n</li>\r\n</ol>\r\n<div id=\"viewer-39d04\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-eco28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Discussion from the Unicity Method</strong></span></p>\r\n<p id=\"viewer-57d96\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The discussion is collated here, under the main headings of the Unicity Method as they apply to Redland City’s workshop.</span></p>\r\n\r\n<div id=\"viewer-ck23e\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-bq805\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"c-Mgr _2Mq66 _2Mq66 _7gPc2\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.jpg/v1/fill/w_1480,h_987,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_93bdba47578b42569fb0fe3afd594221~mv2_d_5367_3578_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-8u58r\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ei6b6\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Redland City is Unique for many reasons</strong></span></p>\r\n<p id=\"viewer-cpkd\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland City is near the Queensland State Capital of Brisbane with all of its institutions and facilities and connects “Minjerribah”, the traditional custodian’s name for the world class North Stradbroke Island. The Quandamooka people have inhabited the Island for more than 18,000 years, well before the arrival of Europeans in the late 1700’s. Redland was declared a Shire in 1949, and has emerged from its then population of 6,000 living within bushland to become a city of 155,000 who retain much of the bushland giving home to Australian wildlife. The City is protective of its Venman National Forest, Ramsar Wetlands and heritage listed sites. </span></p>\r\n\r\n<div id=\"viewer-1cics\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-8f303\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Redland will strive to retain its unique identity into the future</strong></span></p>\r\n<p id=\"viewer-3vgj5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">There is a strong feeling that Redland Coast should not only retain its social, environmental and economic values into the future, but will strengthen these values. For example, it will become better connected, and create the conditions for sustainability with more diversity of wildlife and wildlife corridors. Connections to Stradbroke Island will also be diversified while deepening appreciation of Redland City’s cultural and wildlife heritage.</span></p>\r\n\r\n<div id=\"viewer-htf\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-foakb\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Universally accepted norms for this “naturally wonderful” city</strong></span></p>\r\n<p id=\"viewer-8gork\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland Coast is regarded to be a community focussed city with tourism and business supported by policies and governance that supports equality and inclusion.</span></p>\r\n\r\n<div id=\"viewer-uqv1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-3j5gv\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Preferred futures for what Redland’s is renowned for </strong></span></p>\r\n<p id=\"viewer-1u1d9\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland City’s naturally wonderful branding showcases the City as a naturally community and heritage focussed city, working on its adaptive and innovative capacities through better access, preservation of its cultural vibrancy and sub-tropical feeling, promotion of natural wonders, but also by promoting itself as a leader of equality and inclusion. It will emphasise its self-sustaining capacities and its future focus, as it connects with cities in the region, including Brisbane City.</span></p>\r\n\r\n<div id=\"viewer-d06b9\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-b2fr0\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>What unites Redland City’s communities in engagements that deliver current and near-term plans?</strong></span></p>\r\n<p id=\"viewer-fians\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland’s programs and practices unite stakeholders, residents and visitors with events and occurrences, environmental heritage and cultural depth of the mainland and beautiful North Stradbroke and nearby islands. Redland’s stakeholder and community engagement strategies build Redland’s identity and a sense of belonging which boosts community in all of its forms – communities of location, businesses and organisations, institutions, neighbouring and distant communities, and virtual communities.</span></p>\r\n<p id=\"viewer-b80h5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A possible near-term strategy, is an alternative community ownership program that builds shareholders in the community. This strategy would also share responsibility and accountability with Redland’s communities, conveying pride in place, heritage and hopes for the future.</span></p>\r\n<p id=\"viewer-at3m2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Social networks that contribute to the understanding of the City’s hopes would integrate community groups and help to engage them in future focused activities. These could include coastal and marine education, renewable energy practices, including awareness raising of the City’s possible interests in solar, wind and water driven renewable energy strategies. A further suggestion regarding community connection, is to employ locally, and this is suggested to reduce local traffic, while boosting local awareness and knowledge and commitment to strategies and project that would offer hope and support for Redland’s futures. </span></p>\r\n\r\n<div id=\"viewer-4o1in\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-bp0dc\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Uniting Redland’s people toward a preferred 2040 future</strong></span></p>\r\n<p id=\"viewer-b6s9d\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The group suggested that uniting community members would occur by investing in strategic marine opportunities, along with strategies to develop modern local jobs, better engagement with community and more transport linkages. The connection of social networks and community groups would support the City in raising awareness about futures that generate innovation hubs. Supportive infrastructure includes adapting toward the internet of things and 5G communication networks.</span></p>\r\n\r\n<div id=\"viewer-18uim\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-7kdkt\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>What would untie the City’s unique and preferred futures?</strong></span></p>\r\n<p id=\"viewer-ehmrk\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Core strategies for avoiding the untying of the City’s plans include: avoiding too much debt via efficiency of financial expenditure, avoiding delays and disasters by maintaining resource infrastructure, avoiding litigation issues by adhering to legislation and developing policies that supports the City’s aims. The City can also avoid distractions and delays by interfacing with government departments and anticipating their drivers, developing supportive politics, and appropriate funding and budgets.</span></p>\r\n\r\n<div id=\"viewer-d0sla\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-er08t\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>The preferred future for Council approaches that would prevent weakening of the City’s strategic focus</strong></span></p>\r\n<p id=\"viewer-fukak\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">The long-term preferred future for Redland City should seek to strengthen alignment between government agencies that can help Redland Coast to focus its efforts on completing significant projects that leave a lasting legacy. A focus on innovative and significant outcomes will help Redland Coast to deliver its aims of promoting a “naturally wonderful” city, while protecting its strategic assets. The City will strengthen and promote strategic support among stakeholders and help groups to become self-directed and self-sustaining and supportive of its aims. </span></p>\r\n\r\n<div id=\"viewer-fosg4\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ac8q1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Unmet needs and strategies</strong></span></p>\r\n<p id=\"viewer-225m1\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Near-term strategies include scattered approaches all around the city – programs and practices linked to events and social, economic and environmental outcomes. These strategies would empower Redland’s youth, develop transport links on land and water, such as a fast ferry from Brisbane. </span></p>\r\n\r\n<div id=\"viewer-cucio\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-5vbvu\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_2G2B- _1V0VU _1V0VU _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.jpg/v1/fill/w_720,h_468,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_b6be451ee2664e929b6e23d0c3e4b05c~mv2_d_4374_2844_s_4_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-f5g28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-75d28\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"><strong>Future Strategies</strong></span></p>\r\n<p id=\"viewer-faud2\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Redland 2020-2040 strategies that emerged from the Unicity Method session are listed here. </span></p>\r\n\r\n<ul class=\"public-DraftStyleDefault-ul\">\r\n 	<li id=\"viewer-4gd93\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr public-DraftStyleDefault-reset _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Showcase the environment in Redland Coast</p>\r\n</li>\r\n 	<li id=\"viewer-cs2qu\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Strengthen transport links from Brisbane to Redland Bay and North Stradbroke Island</p>\r\n</li>\r\n 	<li id=\"viewer-1bkn1\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Creation of a Youth Council</p>\r\n</li>\r\n 	<li id=\"viewer-dt1v5\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Ocean, Air and Rail links to Brisbane Airport</p>\r\n</li>\r\n 	<li id=\"viewer-4sq7u\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Marine-tech/Envirotech to create sustainable, renewable energy</p>\r\n</li>\r\n 	<li id=\"viewer-5rs4n\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Quandamooka People’s heritage and tourism strategy</p>\r\n</li>\r\n 	<li id=\"viewer-dmac1\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Engagement and better understanding of how the City’s work is delivered</p>\r\n</li>\r\n 	<li id=\"viewer-75dnm\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Joined/combined approaches</p>\r\n</li>\r\n 	<li id=\"viewer-5qit\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Youth participating in social initiatives to imagine alternative futures</p>\r\n</li>\r\n 	<li id=\"viewer-157mu\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Privacy Act for new technology – quadcopters and dataflow</p>\r\n</li>\r\n 	<li id=\"viewer-7amm2\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Fast ferry from Brisbane</p>\r\n</li>\r\n 	<li id=\"viewer-470oc\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Create Marine and Environmental Technology</p>\r\n</li>\r\n 	<li id=\"viewer-bqv68\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Facilitate commerce to solve ferry and other engineering solutions</p>\r\n</li>\r\n 	<li id=\"viewer-7j8lv\" class=\"ljrnk _1QOLZ _2eQSj _1BJwx public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-list-ltr _2QAo- _25MYV _1Fao9 ljrnk\">\r\n<p class=\"_208Ie _2QAo- _25MYV _1Fao9 ljrnk\">Demand responsive transport to access innovation and learning hubs</p>\r\n</li>\r\n</ul>\r\n<div id=\"viewer-316s6\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<div id=\"viewer-7hehq\" class=\"q2uC4 _3kAGd\">\r\n<div class=\"_1wj_L IoEY5 IoEY5 _2fU6C _1jlZ9 _1jlZ9\">\r\n<div class=\"_1Lhwj image-container _2mwxs\" tabindex=\"0\" role=\"button\" data-hook=\"imageViewer\">\r\n<div class=\"xdJBZ\" role=\"img\"><img class=\"_1Fjtc _2lDdg aligncenter\" src=\"https://static.wixstatic.com/media/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.jpg/v1/fill/w_720,h_488,al_c,q_90,usm_0.66_1.00_0.01/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.webp\" data-pin-url=\"https://www.engagingfutures.com/single-post/redland-city-2040-futures-thinking-and-strategy-transformation-workshop\" data-pin-media=\"https://static.wixstatic.com/media/e5a1f8_aea0253fcbb041f9a3b0b56cfc5e4049~mv2_d_1920_1302_s_2.jpg/v1/fit/w_1000%2Ch_1000%2Cal_c%2Cq_80/file.png\" /></div>\r\n<div class=\"\"></div>\r\n<div class=\"\"></div>\r\n<span class=\"_3ULLf image-caption\" dir=\"auto\">\"Be Naturally Wonderful\" by protecting and working equitably with the environment and its people</span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"viewer-8hgcd\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-ca74m\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A summary of core Redland City 2020-2040 strategies that emerged from the Unicity Method session follow: </span></p>\r\n\r\n<div id=\"viewer-5ia19\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-5rnve\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Links from Brisbane to Redland Bay and North Stradbroke Island Creation of a Youth Council Ocean, Air and Rail links to Brisbane Airport Marine-tech/Envirotech to create sustainable, renewable energy Quandamooka People’s heritage and tourism strategy.</span></p>\r\n<p id=\"viewer-8jtg5\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">A Futures Thinking workshop sets out principles of strategic futures thinking for lessons supporting discussions of context and broader analysis. This foundation includes sector changes, stage of development of a sector (size, protocols, capacities in a market and community), emerging issues and possible futures - assumptions of the rate of growth and other contexts presented for consideration when creating preferred futures. Then, alternative futures, and a preferred future are able to be created, defined and broadened in context and scope. This solid foundation was generated by Redland City’s CEO and strategy leaders, and was clarified by applying the strategic futures method The Unicity Method. </span></p>\r\n\r\n<div id=\"viewer-e8kni\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-aqot8\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">It is suggested that further futures methods be used to assist the City, especially Causal Layered Analysis, which can be workshopped to deepen the preferred futures.</span></p>\r\n\r\n<div id=\"viewer-dpup3\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\"> </span></div>\r\n<p id=\"viewer-7fsgj\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"><span class=\"vkIF2 public-DraftStyleDefault-ltr\">Special thanks to Andrew Chesterman, Angela Milne and team, for internal arrangements.</span></p>\r\n<p id=\"viewer-4r68i\" class=\"XzvDs _208Ie ljrnk blog-post-text-font blog-post-text-color _2QAo- _25MYV _1Fao9 ljrnk public-DraftStyleDefault-block-depth0 public-DraftStyleDefault-text-ltr\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</article></div>', 'Redland City 2040: Futures Thinking and Strategy Transformation Workshop', '', 'inherit', 'closed', 'closed', '', '533-revision-v1', '', '', '2020-11-16 21:58:42', '2020-11-16 11:58:42', '', 533, 'http://localhost:8888/wordpress/2020/11/16/533-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(538, 1, '2020-11-16 22:00:28', '2020-11-16 12:00:28', '[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605528005718-2c61647c-b3b4-3\"][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 22:00:28', '2020-11-16 12:00:28', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(539, 1, '2020-11-16 22:54:07', '2020-11-16 12:54:07', '[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605528032795-b14e888b-bab3-1\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][ultimate_dual_color dual_before_txt=\"Publications - writing preferred futures\" dual_ba_color=\"__USE_THEME_MAIN_COLOR__\" dual_ba_back_color=\"__USE_THEME_MAIN_COLOR__\"][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 22:54:07', '2020-11-16 12:54:07', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(540, 1, '2020-11-16 22:56:59', '2020-11-16 12:56:59', '[vc_row][vc_column][ultimate_dual_color dual_before_txt=\"``Writing about preferred futures challenges the least desired worst case scenarios``\" dual_ba_color=\"__USE_THEME_MAIN_COLOR__\" dual_ba_back_color=\"__USE_THEME_MAIN_COLOR__\" dual_high_color=\"__USE_THEME_MAIN_COLOR__\" dual_high_back_color=\"__USE_THEME_MAIN_COLOR__\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605531252345-c4a32243-4bc9-4\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 22:56:59', '2020-11-16 12:56:59', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(541, 1, '2020-11-16 22:57:51', '2020-11-16 12:57:51', '[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_dual_color dual_before_txt=\"``Writing about preferred futures challenges the least desired worst case scenarios``\" dual_ba_color=\"__USE_THEME_MAIN_COLOR__\" dual_ba_back_color=\"__USE_THEME_MAIN_COLOR__\" dual_high_color=\"__USE_THEME_MAIN_COLOR__\" dual_high_back_color=\"__USE_THEME_MAIN_COLOR__\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605531423259-2737ebe0-9914-8\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 22:57:51', '2020-11-16 12:57:51', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(542, 1, '2020-11-16 23:12:49', '2020-11-16 13:12:49', '<div class=\"blogpost-header\">\r\n<div class=\"share-article\">Colin Russo</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-8\">\r\n<div class=\"blogpost-main\">\r\n<div class=\"lead-text\">\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">In the Greek tale of \'the lion and the man\', Androcles removes a thorn from a lion\'s foot. Years later, the lion repays the favour when facing Androcles in the Roman Colosseum. The lion affirmed their mutual friendship and persuaded the Romans to pardon Androcles from battle. Afterwards, people would say \"This is the lion, a man\'s friend; this is the man, a lion\'s doctor\". This metaphor is of how a man and a lion benefitted by helping each other, but what lessons are there for small rural regions to learn from large cities?</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">As a futurist, I respond from within Inayatullah’s Six Pillars framework by mapping the present and the business as usual future of rural migration and urbanisation, and using case studies that pull cities and settlements toward the business as usual future. Within the discussion, I use indexes to identify trends and projections and as guidelines for shaping cities. Finally, core variables from the case studies are integrated into scenarios to help clarify alternative and preferred 2030 futures for rural settlements.</span>\r\n\r\n</div>\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Current urbanisation trend</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Currently, remote and rural ‘outback’ areas are experiencing the effects of population and economic decline. </span><a href=\"http://www.un.org/en/development/desa/population/publications/pdf/urbanization/the_worlds_cities_in_2016_data_booklet.pdf\">This trend is predicted to continue</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, as “while rural areas were home to more than 45 per cent of the world’s population in 2016, that proportion is expected to fall to 40 per cent by 2030.” Further to this rural decline, the number of cities with more than one million residents will grow from 512 to 662.  </span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">As liveability of major population centres increases, residents from remote rural areas are leaving industries like manufacturing and agriculture virtually in the dust.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Consequently, declines in rural populations reduce local funding for services and infrastructure </span><span lang=\"EN-US\" xml:lang=\"EN-US\">over vast land areas. In the US, the country with the world’s fourth largest land area (albeit with greater population density with 18% of the world’s population) is experiencing similar migrations away from its middle States. This migration is contributing to a coastal cities’ boom during the current \'digital age\'. The Consequences are again of leaving rural area services and infrastructure in decline. Declines of US ‘middle-west’ States fueled a Republican victory at the US Presidential elections in November 2016. The dream of \'making it in America\' applied more so to the West coast cities of California and Los Angeles and the East coast city of New York, ensuring that a \'back to the future\' scenario in the middle States was increasingly unlikely. What has resulted are inland island communities in the wake of urbanisation. Across the US, even though over the past sixty years </span><a href=\"http://worldhappiness.report/wp-content/uploads/sites/2/2017/03/HR17-Ch7.pdf\">income has risen 300%, happiness over the last decade has declined</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, because of “rising inequality, corruption, isolation, and distrust”</span>\r\n\r\n&nbsp;\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Mapping the plausible rural futures with Futures Triangle method</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">An understanding of a) current drivers and B) weights of history or the barriers to the \'business as usual future\' of continued urban growth to 2030, together with c) pulling future images / case examples from cities, can help rural areas to develop their strategic foresight. The method used in the next analysis is the Six Pillars framework´s </span><a href=\"http://www.futuresplatform.com/blog/how-can-we-predict-plausible-futures\">Futures Triangle</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, which is used for mapping the key elements that form the plausible future.</span>\r\n\r\n&nbsp;\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Drivers of the business-as-usual future</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">The global State of the Futures Index (SOFI) projects to 2030 significant increases in renewable energy use, internet use, high-skilled employment, gross national income and health expenditure - factors that indicate no pause in growth for major cities. In fact, the projections suggest accelerated growth in densely populated regions. But the story doesn’t have to end with rural decline. This business as usual projection does not exclude growth or enhancement of lifestyles in particular rural areas. If inland regions can play a role in offering unique experiences, opportunities and products as alternatives to crowded city lifestyles they can reshape their futures. Part of the reason for this optimism is that rural localities are connected to globalisation by air, road, rail but of particular importance is their connection to the world’s constantly evolving digital highway.</span>\r\n<h4></h4>\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Barriers to the business-as-usual future</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">SOFI\'s ten-year projections of barriers to growth include future declines in water sources, biocapacity and forest areas. With foresight, these barriers can be turned into opportunities. All of these barriers can be resolved with resources that abound in rural areas, particularly resources of large tracts of cheap, available land. For example, the outback Queensland town of Hughenden, is </span><a href=\"http://www.abc.net.au/news/rural/2017-08-28/outback-town-looks-to-pilot-australia27s-next-cropping-fronteir/8848350\">securing a new water source to establish large scale crop irrigation</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> that would help feed its region. Hope for rural areas can also be found from advances in technologies such as solar power </span><a href=\"https://www.sunshinecoast.qld.gov.au/Environment/Sunshine-Coast-Solar-Farm/Solar-Farm-Overview\">now being delivered for the first time in Australia’s history by a local government organisation</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> offsetting all of its facilities and operations with solar energy.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Barriers to growth also include social systems. The United Nations calls for cities and human settlements to make themselves inclusive, safe, resilient and sustainable </span><a href=\"https://sustainabledevelopment.un.org/post2015/transformingourworld\">Social Progress Indicators</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> of basic human needs, wellbeing and opportunity are helpful in monitoring progress by making clear where a nation is under and over performing. For example, </span><a href=\"https://www.socialprogressindex.com/?tab=2&amp;code=FIN&amp;compare=AUS&amp;compare=FIN&amp;prop=SPI\">Finland is second highest in world social progress</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and is overperforming in the </span><span lang=\"EN-US\" xml:lang=\"EN-US\">provision of affordable housing, but is underperforming in some other areas.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Preferred futures can be understood more deeply and made more socially accountable in cities and settlements, by taking into consideration aspects of inequality as is monitored by the </span><span lang=\"EN-US\" xml:lang=\"EN-US\">Inequality-adjusted Human Development Index. As its name suggest, this index reduces an areas score for areas of inequality. The </span><a href=\"http://hdr.undp.org/sites/default/files/2016_human_development_report.pdf\">UN’s Human Development Program Report</a> <span lang=\"EN-US\" xml:lang=\"EN-US\">identifies barriers to human development of intolerance and exclusion, weak bargaining power, elite capture of institutions and narrow self-identities.</span>\r\n\r\n&nbsp;\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Case studies that pull cities and settlements toward the business-as-usual future</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Rural areas are best positioned to ask for support from higher levels of government, from business partners and from larger cities, when they create a clear plan outlining preferred futures. This plan can be substantiated by case studies that allow an analysis of preferred, disowned, integrated and outlier futures. Case studies should be from multiple domains e.g. social, economic, leadership, environmental, cultural, transport, futures, governance and politics (SELECTFTGP). Case studies of improved social liveability, technological innovation and leadership/foresight are offered next. Firstly, <a href=\"http://www.abc.net.au/news/2017-08-16/melbourne-named-worlds-most-liveable-city-for-seventh-year/8812196\">the world\'s most liveable city</a></span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\"><a href=\"http://www.abc.net.au/news/2017-08-16/melbourne-named-worlds-most-liveable-city-for-seventh-year/8812196\">for seven years running, is Melbourne</a></span><span lang=\"EN-US\" xml:lang=\"EN-US\">. The </span><a href=\"http://www.smh.com.au/cqstatic/gxx1l4/LiveabilityReport2017.pdf\">Liveability Report</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> appeals greatly to current and potential residents, visitors and investors. It ranks the preferred future of liveability by assessing the quality of each cities’ stability, healthcare, culture and environment, education, and infrastructure. At the same time, </span><a href=\"http://www.abc.net.au/news/2017-08-17/melbourne-not-worlds-most-liveable-city-vancouver-planner-says/8815514\">Melbourne\'s case for \'most liveable\' has its detractors</a><span lang=\"EN-US\" xml:lang=\"EN-US\">- the disowned future is of city residents resting comfortably when economic inequity leaves smaller populations feeling disenfranchised. An integrated view of the future would take the preferred ‘liveability’ view and the disowned ‘inequality’ view, and create a happy medium, for example, that residents should be encouraged to \'get away from it all\' via holidays and in retirement years, and make a contribution to rural tourism.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">The role for rural towns becomes one of building capacities of attractive, accessible, family friendly destinations that offer tourists ‘a happiness experience, ’ i.e. they revitalise health and wellbeing and contribute to the nation\'s happiness. In </span><a href=\"http://www.grossnationalhappiness.com/2017/02/a-short-guide-to-gnh-index/\">Bhutan, a national scale of happiness</a> <span lang=\"EN-US\" xml:lang=\"EN-US\">includes areas of education, health, environment, community vitality, time use, psychological wellbeing, good governance and cultural resilience. Bhutan has many lessons to share with international communities. On a city scale, the UK is </span><a href=\"http://www.happycity.org.uk/measurement-policy/happy-city-index/\">monitoring city progress</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> via success in providing the conditions that create sustainable wellbeing, for its top 9 cities. The importance of monitoring city indexes of liveability and happiness, is in cities and settlements identifying their own stories, what works for them and to develop measures and indicators specific to their strengths and interests – potentially helping large and small cities to create mutually beneficial partnerships.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Another case study is of technological innovation displayed by the Chinese city of Shenzhen. This is a city that has contributed greatly to the innovations being exchanged in Silicon Valley. Shenzhen achieved success via a very different model to one structured by legalities surrounding intellectual property. Instead, Shenzhen excels because of a willingness to share, innovate and learn. This practice may be termed ‘co-opetition’ exemplified by Shenzhen\'s business model of endemic cooperation and innovation and which helps Shenzhen and its partners remain competitive globally.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">A further case study for small cities learning from lionesque cities is to create a state of future readiness using corporate and long-term planning as Singapore is doing. Singapore has become an exemplar of long-term vision and policy creation fostering a state of future readiness.</span>\r\n\r\n&nbsp;\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Four new scenarios of possible and preferred futures</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">From this discussion, multi variables are integrated into four scenarios, set out here as a day in the life of a 2030 rural village.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Scenario 1 - “Rural tech startups” - By 2030 governments are funding business hubs, the mentoring of school leavers in entrepreneurship, undergraduate and postgraduate studies and </span><a href=\"https://techcrunch.com/2016/08/01/rural-tech-startups-see-success-across-us/\">rural tech competitions</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to boost ‘co-opetition’ between businesses. Rural regions have converted large disused sheds into innovation workshops to inspire local to global crowd-sourcing and kick-starter ideas. They have excelled because they have created gigabit networks with data download speeds 500 times faster than broadband can deliver. This </span><span lang=\"EN-US\" xml:lang=\"EN-US\">network benefits scientists, video editors, 3D animators, musicians and software developers.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">One company that was unique to the USA in 2017 is </span><a href=\"https://techcrunch.com/2016/11/09/zipline-raises-25-million-to-deliver-medical-supplies-by-drone/\">Zipline</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> which delivers medical supplies across vast areas. In 2030 similar services have evolved in rural regions to deliver more than medical supplies – quadcopters and drones now taxi residents to rural destinations and deliver personal mail, business equipment and online shopping.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Scenario 2 - “Livability mimicker” - Rural towns transform to become \'most liveable\' and offer incentives such as four-day working weeks with a fifth day focused on the happiness of others through offering respite, health and psychological wellbeing services – counselling, educating, connecting. Rural areas developed an app to help facilitate social inclusion. They created community development through engagement, action learning, storying, psychological awareness, with an emphasis on social progress, creating opportunity for businesses and reducing inequality.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Scenario 3 - “Major projects” - Dams, nuclear power plants, military facilities, waste facilities and mining facilities are the first step in this scenario. After these possibilities became exhausted, the use of foresight to learn how to use less water emerged, e.g. focus on food futures via </span><a href=\"https://www.youtube.com/watch?v=UE8VEmhugvY\">aquaponics</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and </span><a href=\"https://www.youtube.com/watch?v=-_tvJtUHnmU\">vertical farming</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Both systems use far less water than traditional farms and produce a variety of crops creating local self-sufficiency that reduces transport costs of food deliveries. Sustainable building design is another way that rural areas are learning from cities. Following this example from </span><a href=\"http://masdar.ae/en/masdar-city/live-work-play\">Masdar City in the Arab Emirates</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, rural areas are now designing tourism friendly sustainable buildings that work effectively in intemperate climates.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Scenario 4 - \"Natural wonders research centres\" - In this 2030 scenario rural area populations are partnered with government and universities to provide internships, entrepreneurship, exchanges and outplacements to youth, innovators and professional staff. These exchanges build knowledge in areas like funding for observatories, natural wildlife and climatic conditions research centres and events strategies for research festivals that ‘re-story’ inland culture. By also working with futurists, the psychology of the community is integrated into a 2030 vision, through the use of transformative local stories and metaphors.</span>\r\n\r\n&nbsp;\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Scenario analysis, to clarify preferred, disowned, integrated and outlier futures</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">The above scenarios lead to <strong>preferred</strong> futures that change local culture significantly. They bring space saving vertical industry, energy saving renewable industry and science led research coupled with an interest in the environment. They also bring social inclusion helping people to connect at home and in their businesses.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\"><strong>Disowned</strong> futures are of agriculture, manufacturing and heavy industry.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\"><strong>Integrated</strong> futures scenarios would see the use of multi-purpose spaces where vertical farming and aqua-ponds are on one side of a shed/warehouse and the other would be dedicated to researching machine parts to create advanced manufacturing processes e.g. nanobot materials for self-healing of machinery and changes to autonomous electric tractors.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\"><strong>Outlier </strong>futures project ‘what if’ scenarios, that could quickly disrupt rural futures to 2030. They include global proposals to industrialise and occupy rural regions, planetary cooling as renewables take effect sending people inland to temperate areas, hyper-speed underground transport systems that take people directly to neighbouring cities at low cost, as global share market based industries target rebuilding rural areas as eco-village health and learning retreats.</span>\r\n\r\nTable 1 Integrated Scenario: 2030 Rural Futures\r\n\r\n<img src=\"https://www.futuresplatform.com/sites/default/files/inline-images/Scenarios_0.png\" alt=\"Integrated Scenario: 2030 Rural Futures\" width=\"796\" height=\"364\" data-entity-type=\"file\" data-entity-uuid=\"f57779e4-d41c-410a-b5e1-b829f89c6752\" />\r\n<h4></h4>\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Benefits of using six pillars method</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Through the creation of their own alternative 2030 visions with the given method, rural regions can generate greater happiness. Settlements can prevent the \'Midwest USA\' oversight by presenting 2030 Visions that create preferred futures at multiple internal and external levels - to be in tune with emerging issues, challenges and global cultures. To be sure, reciprocation is needed from the lionesque cities - but what counts, as they say, isn\'t the size of the lion in the fight, it is the size of the heart in the lion.</span>\r\n\r\n&nbsp;\r\n\r\n<em><span lang=\"EN-US\" xml:lang=\"EN-US\"><strong>Dr Colin Russo</strong> is an Australian futurist, facilitator, award-winning futures author and award-winning engagement expert. Dr Russo has worked for the Queensland Department of Environment and Department of Mines and Energy and for the City of Gold Coast. He worked for Director General’s and CEO’s Offices and continues to work with executive and policy staff and their stakeholders.</span></em>\r\n\r\n<em><span lang=\"EN-US\" xml:lang=\"EN-US\">From 2015 Dr Russo has worked as Managing Director of Engaging Futures, a consultancy delivering futures workshops for executives and staff interested in learning about and working on their own futures thinking and action learning projects. Most recently, Dr Russo has presented in the USA, Taiwan and Australia. From 2015 he has been a futurist facilitator of 1-3 day futures workshops, panels, forums and strategy developments for State and Local governments and for corporations.</span></em>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>', 'In the Wake of Urbanisation', '', 'publish', 'open', 'open', '', 'in-the-wake-of-urbanisation', '', '', '2020-11-16 23:14:38', '2020-11-16 13:14:38', '', 0, 'http://localhost:8888/wordpress/?p=542', 0, 'post', '', 0),
(543, 1, '2020-11-16 23:12:43', '2020-11-16 13:12:43', '', 'lionesque city_0', '', 'inherit', 'open', 'closed', '', 'lionesque-city_0', '', '', '2020-11-16 23:12:43', '2020-11-16 13:12:43', '', 542, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/lionesque-city_0.jpg', 0, 'attachment', 'image/jpeg', 0),
(544, 1, '2020-11-16 23:12:49', '2020-11-16 13:12:49', '<div class=\"blogpost-header\">\r\n<div class=\"share-article\">Colin Russo</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-8\">\r\n<div class=\"blogpost-main\">\r\n<div class=\"lead-text\">\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">In the Greek tale of \'the lion and the man\', Androcles removes a thorn from a lion\'s foot. Years later, the lion repays the favour when facing Androcles in the Roman Colosseum. The lion affirmed their mutual friendship and persuaded the Romans to pardon Androcles from battle. Afterwards, people would say \"This is the lion, a man\'s friend; this is the man, a lion\'s doctor\". This metaphor is of how a man and a lion benefitted by helping each other, but what lessons are there for small rural regions to learn from large cities?</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">As a futurist, I respond from within Inayatullah’s Six Pillars framework by mapping the present and the business as usual future of rural migration and urbanisation, and using case studies that pull cities and settlements toward the business as usual future. Within the discussion, I use indexes to identify trends and projections and as guidelines for shaping cities. Finally, core variables from the case studies are integrated into scenarios to help clarify alternative and preferred 2030 futures for rural settlements.</span>\r\n\r\n</div>\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Current urbanisation trend</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Currently, remote and rural ‘outback’ areas are experiencing the effects of population and economic decline. </span><a href=\"http://www.un.org/en/development/desa/population/publications/pdf/urbanization/the_worlds_cities_in_2016_data_booklet.pdf\">This trend is predicted to continue</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, as “while rural areas were home to more than 45 per cent of the world’s population in 2016, that proportion is expected to fall to 40 per cent by 2030.” Further to this rural decline, the number of cities with more than one million residents will grow from 512 to 662.  </span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">As liveability of major population centres increases, residents from remote rural areas are leaving industries like manufacturing and agriculture virtually in the dust.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Consequently, declines in rural populations reduce local funding for services and infrastructure </span><span lang=\"EN-US\" xml:lang=\"EN-US\">over vast land areas. In the US, the country with the world’s fourth largest land area (albeit with greater population density with 18% of the world’s population) is experiencing similar migrations away from its middle States. This migration is contributing to a coastal cities’ boom during the current \'digital age\'. The Consequences are again of leaving rural area services and infrastructure in decline. Declines of US ‘middle-west’ States fueled a Republican victory at the US Presidential elections in November 2016. The dream of \'making it in America\' applied more so to the West coast cities of California and Los Angeles and the East coast city of New York, ensuring that a \'back to the future\' scenario in the middle States was increasingly unlikely. What has resulted are inland island communities in the wake of urbanisation. Across the US, even though over the past sixty years </span><a href=\"http://worldhappiness.report/wp-content/uploads/sites/2/2017/03/HR17-Ch7.pdf\">income has risen 300%, happiness over the last decade has declined</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, because of “rising inequality, corruption, isolation, and distrust”</span>\r\n\r\n&nbsp;\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Mapping the plausible rural futures with Futures Triangle method</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">An understanding of a) current drivers and B) weights of history or the barriers to the \'business as usual future\' of continued urban growth to 2030, together with c) pulling future images / case examples from cities, can help rural areas to develop their strategic foresight. The method used in the next analysis is the Six Pillars framework´s </span><a href=\"http://www.futuresplatform.com/blog/how-can-we-predict-plausible-futures\">Futures Triangle</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, which is used for mapping the key elements that form the plausible future.</span>\r\n\r\n&nbsp;\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Drivers of the business-as-usual future</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">The global State of the Futures Index (SOFI) projects to 2030 significant increases in renewable energy use, internet use, high-skilled employment, gross national income and health expenditure - factors that indicate no pause in growth for major cities. In fact, the projections suggest accelerated growth in densely populated regions. But the story doesn’t have to end with rural decline. This business as usual projection does not exclude growth or enhancement of lifestyles in particular rural areas. If inland regions can play a role in offering unique experiences, opportunities and products as alternatives to crowded city lifestyles they can reshape their futures. Part of the reason for this optimism is that rural localities are connected to globalisation by air, road, rail but of particular importance is their connection to the world’s constantly evolving digital highway.</span>\r\n<h4></h4>\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Barriers to the business-as-usual future</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">SOFI\'s ten-year projections of barriers to growth include future declines in water sources, biocapacity and forest areas. With foresight, these barriers can be turned into opportunities. All of these barriers can be resolved with resources that abound in rural areas, particularly resources of large tracts of cheap, available land. For example, the outback Queensland town of Hughenden, is </span><a href=\"http://www.abc.net.au/news/rural/2017-08-28/outback-town-looks-to-pilot-australia27s-next-cropping-fronteir/8848350\">securing a new water source to establish large scale crop irrigation</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> that would help feed its region. Hope for rural areas can also be found from advances in technologies such as solar power </span><a href=\"https://www.sunshinecoast.qld.gov.au/Environment/Sunshine-Coast-Solar-Farm/Solar-Farm-Overview\">now being delivered for the first time in Australia’s history by a local government organisation</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> offsetting all of its facilities and operations with solar energy.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Barriers to growth also include social systems. The United Nations calls for cities and human settlements to make themselves inclusive, safe, resilient and sustainable </span><a href=\"https://sustainabledevelopment.un.org/post2015/transformingourworld\">Social Progress Indicators</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> of basic human needs, wellbeing and opportunity are helpful in monitoring progress by making clear where a nation is under and over performing. For example, </span><a href=\"https://www.socialprogressindex.com/?tab=2&amp;code=FIN&amp;compare=AUS&amp;compare=FIN&amp;prop=SPI\">Finland is second highest in world social progress</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and is overperforming in the </span><span lang=\"EN-US\" xml:lang=\"EN-US\">provision of affordable housing, but is underperforming in some other areas.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Preferred futures can be understood more deeply and made more socially accountable in cities and settlements, by taking into consideration aspects of inequality as is monitored by the </span><span lang=\"EN-US\" xml:lang=\"EN-US\">Inequality-adjusted Human Development Index. As its name suggest, this index reduces an areas score for areas of inequality. The </span><a href=\"http://hdr.undp.org/sites/default/files/2016_human_development_report.pdf\">UN’s Human Development Program Report</a> <span lang=\"EN-US\" xml:lang=\"EN-US\">identifies barriers to human development of intolerance and exclusion, weak bargaining power, elite capture of institutions and narrow self-identities.</span>\r\n\r\n&nbsp;\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Case studies that pull cities and settlements toward the business-as-usual future</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Rural areas are best positioned to ask for support from higher levels of government, from business partners and from larger cities, when they create a clear plan outlining preferred futures. This plan can be substantiated by case studies that allow an analysis of preferred, disowned, integrated and outlier futures. Case studies should be from multiple domains e.g. social, economic, leadership, environmental, cultural, transport, futures, governance and politics (SELECTFTGP). Case studies of improved social liveability, technological innovation and leadership/foresight are offered next. Firstly, <a href=\"http://www.abc.net.au/news/2017-08-16/melbourne-named-worlds-most-liveable-city-for-seventh-year/8812196\">the world\'s most liveable city</a></span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\"><a href=\"http://www.abc.net.au/news/2017-08-16/melbourne-named-worlds-most-liveable-city-for-seventh-year/8812196\">for seven years running, is Melbourne</a></span><span lang=\"EN-US\" xml:lang=\"EN-US\">. The </span><a href=\"http://www.smh.com.au/cqstatic/gxx1l4/LiveabilityReport2017.pdf\">Liveability Report</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> appeals greatly to current and potential residents, visitors and investors. It ranks the preferred future of liveability by assessing the quality of each cities’ stability, healthcare, culture and environment, education, and infrastructure. At the same time, </span><a href=\"http://www.abc.net.au/news/2017-08-17/melbourne-not-worlds-most-liveable-city-vancouver-planner-says/8815514\">Melbourne\'s case for \'most liveable\' has its detractors</a><span lang=\"EN-US\" xml:lang=\"EN-US\">- the disowned future is of city residents resting comfortably when economic inequity leaves smaller populations feeling disenfranchised. An integrated view of the future would take the preferred ‘liveability’ view and the disowned ‘inequality’ view, and create a happy medium, for example, that residents should be encouraged to \'get away from it all\' via holidays and in retirement years, and make a contribution to rural tourism.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">The role for rural towns becomes one of building capacities of attractive, accessible, family friendly destinations that offer tourists ‘a happiness experience, ’ i.e. they revitalise health and wellbeing and contribute to the nation\'s happiness. In </span><a href=\"http://www.grossnationalhappiness.com/2017/02/a-short-guide-to-gnh-index/\">Bhutan, a national scale of happiness</a> <span lang=\"EN-US\" xml:lang=\"EN-US\">includes areas of education, health, environment, community vitality, time use, psychological wellbeing, good governance and cultural resilience. Bhutan has many lessons to share with international communities. On a city scale, the UK is </span><a href=\"http://www.happycity.org.uk/measurement-policy/happy-city-index/\">monitoring city progress</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> via success in providing the conditions that create sustainable wellbeing, for its top 9 cities. The importance of monitoring city indexes of liveability and happiness, is in cities and settlements identifying their own stories, what works for them and to develop measures and indicators specific to their strengths and interests – potentially helping large and small cities to create mutually beneficial partnerships.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Another case study is of technological innovation displayed by the Chinese city of Shenzhen. This is a city that has contributed greatly to the innovations being exchanged in Silicon Valley. Shenzhen achieved success via a very different model to one structured by legalities surrounding intellectual property. Instead, Shenzhen excels because of a willingness to share, innovate and learn. This practice may be termed ‘co-opetition’ exemplified by Shenzhen\'s business model of endemic cooperation and innovation and which helps Shenzhen and its partners remain competitive globally.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">A further case study for small cities learning from lionesque cities is to create a state of future readiness using corporate and long-term planning as Singapore is doing. Singapore has become an exemplar of long-term vision and policy creation fostering a state of future readiness.</span>\r\n\r\n&nbsp;\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Four new scenarios of possible and preferred futures</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">From this discussion, multi variables are integrated into four scenarios, set out here as a day in the life of a 2030 rural village.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Scenario 1 - “Rural tech startups” - By 2030 governments are funding business hubs, the mentoring of school leavers in entrepreneurship, undergraduate and postgraduate studies and </span><a href=\"https://techcrunch.com/2016/08/01/rural-tech-startups-see-success-across-us/\">rural tech competitions</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> to boost ‘co-opetition’ between businesses. Rural regions have converted large disused sheds into innovation workshops to inspire local to global crowd-sourcing and kick-starter ideas. They have excelled because they have created gigabit networks with data download speeds 500 times faster than broadband can deliver. This </span><span lang=\"EN-US\" xml:lang=\"EN-US\">network benefits scientists, video editors, 3D animators, musicians and software developers.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">One company that was unique to the USA in 2017 is </span><a href=\"https://techcrunch.com/2016/11/09/zipline-raises-25-million-to-deliver-medical-supplies-by-drone/\">Zipline</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> which delivers medical supplies across vast areas. In 2030 similar services have evolved in rural regions to deliver more than medical supplies – quadcopters and drones now taxi residents to rural destinations and deliver personal mail, business equipment and online shopping.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Scenario 2 - “Livability mimicker” - Rural towns transform to become \'most liveable\' and offer incentives such as four-day working weeks with a fifth day focused on the happiness of others through offering respite, health and psychological wellbeing services – counselling, educating, connecting. Rural areas developed an app to help facilitate social inclusion. They created community development through engagement, action learning, storying, psychological awareness, with an emphasis on social progress, creating opportunity for businesses and reducing inequality.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Scenario 3 - “Major projects” - Dams, nuclear power plants, military facilities, waste facilities and mining facilities are the first step in this scenario. After these possibilities became exhausted, the use of foresight to learn how to use less water emerged, e.g. focus on food futures via </span><a href=\"https://www.youtube.com/watch?v=UE8VEmhugvY\">aquaponics</a><span lang=\"EN-US\" xml:lang=\"EN-US\"> and </span><a href=\"https://www.youtube.com/watch?v=-_tvJtUHnmU\">vertical farming</a><span lang=\"EN-US\" xml:lang=\"EN-US\">.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Both systems use far less water than traditional farms and produce a variety of crops creating local self-sufficiency that reduces transport costs of food deliveries. Sustainable building design is another way that rural areas are learning from cities. Following this example from </span><a href=\"http://masdar.ae/en/masdar-city/live-work-play\">Masdar City in the Arab Emirates</a><span lang=\"EN-US\" xml:lang=\"EN-US\">, rural areas are now designing tourism friendly sustainable buildings that work effectively in intemperate climates.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Scenario 4 - \"Natural wonders research centres\" - In this 2030 scenario rural area populations are partnered with government and universities to provide internships, entrepreneurship, exchanges and outplacements to youth, innovators and professional staff. These exchanges build knowledge in areas like funding for observatories, natural wildlife and climatic conditions research centres and events strategies for research festivals that ‘re-story’ inland culture. By also working with futurists, the psychology of the community is integrated into a 2030 vision, through the use of transformative local stories and metaphors.</span>\r\n\r\n&nbsp;\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Scenario analysis, to clarify preferred, disowned, integrated and outlier futures</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">The above scenarios lead to <strong>preferred</strong> futures that change local culture significantly. They bring space saving vertical industry, energy saving renewable industry and science led research coupled with an interest in the environment. They also bring social inclusion helping people to connect at home and in their businesses.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\"><strong>Disowned</strong> futures are of agriculture, manufacturing and heavy industry.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\"><strong>Integrated</strong> futures scenarios would see the use of multi-purpose spaces where vertical farming and aqua-ponds are on one side of a shed/warehouse and the other would be dedicated to researching machine parts to create advanced manufacturing processes e.g. nanobot materials for self-healing of machinery and changes to autonomous electric tractors.</span>\r\n\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\"><strong>Outlier </strong>futures project ‘what if’ scenarios, that could quickly disrupt rural futures to 2030. They include global proposals to industrialise and occupy rural regions, planetary cooling as renewables take effect sending people inland to temperate areas, hyper-speed underground transport systems that take people directly to neighbouring cities at low cost, as global share market based industries target rebuilding rural areas as eco-village health and learning retreats.</span>\r\n\r\nTable 1 Integrated Scenario: 2030 Rural Futures\r\n\r\n<img src=\"https://www.futuresplatform.com/sites/default/files/inline-images/Scenarios_0.png\" alt=\"Integrated Scenario: 2030 Rural Futures\" width=\"796\" height=\"364\" data-entity-type=\"file\" data-entity-uuid=\"f57779e4-d41c-410a-b5e1-b829f89c6752\" />\r\n<h4></h4>\r\n<h4><strong><span lang=\"EN-US\" xml:lang=\"EN-US\">Benefits of using six pillars method</span></strong></h4>\r\n<span lang=\"EN-US\" xml:lang=\"EN-US\">Through the creation of their own alternative 2030 visions with the given method, rural regions can generate greater happiness. Settlements can prevent the \'Midwest USA\' oversight by presenting 2030 Visions that create preferred futures at multiple internal and external levels - to be in tune with emerging issues, challenges and global cultures. To be sure, reciprocation is needed from the lionesque cities - but what counts, as they say, isn\'t the size of the lion in the fight, it is the size of the heart in the lion.</span>\r\n\r\n&nbsp;\r\n\r\n<em><span lang=\"EN-US\" xml:lang=\"EN-US\"><strong>Dr Colin Russo</strong> is an Australian futurist, facilitator, award-winning futures author and award-winning engagement expert. Dr Russo has worked for the Queensland Department of Environment and Department of Mines and Energy and for the City of Gold Coast. He worked for Director General’s and CEO’s Offices and continues to work with executive and policy staff and their stakeholders.</span></em>\r\n\r\n<em><span lang=\"EN-US\" xml:lang=\"EN-US\">From 2015 Dr Russo has worked as Managing Director of Engaging Futures, a consultancy delivering futures workshops for executives and staff interested in learning about and working on their own futures thinking and action learning projects. Most recently, Dr Russo has presented in the USA, Taiwan and Australia. From 2015 he has been a futurist facilitator of 1-3 day futures workshops, panels, forums and strategy developments for State and Local governments and for corporations.</span></em>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>', 'In the Wake of Urbanisation', '', 'inherit', 'closed', 'closed', '', '542-revision-v1', '', '', '2020-11-16 23:12:49', '2020-11-16 13:12:49', '', 542, 'http://localhost:8888/wordpress/2020/11/16/542-revision-v1/', 0, 'revision', '', 0),
(545, 1, '2020-11-16 23:16:07', '2020-11-16 13:16:07', '<p>[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605532545933-148f93f463d6197528885740d236a28a-6\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 23:16:07', '2020-11-16 13:16:07', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(546, 1, '2020-11-16 23:18:59', '2020-11-16 13:18:59', '[vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605532653003-47866425-c6e0-6\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 23:18:59', '2020-11-16 13:18:59', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(547, 1, '2020-11-16 23:19:52', '2020-11-16 13:19:52', '[vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605532743572-c55c0991-58d9-3\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 23:19:52', '2020-11-16 13:19:52', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(548, 1, '2020-11-16 23:20:44', '2020-11-16 13:20:44', '[vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605532795661-d13de38d-5433-2\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-16 23:20:44', '2020-11-16 13:20:44', '', 101, 'http://localhost:8888/wordpress/2020/11/16/101-revision-v1/', 0, 'revision', '', 0),
(549, 1, '2020-11-17 17:20:33', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2020-11-17 17:20:33', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=549', 0, 'post', '', 0),
(550, 1, '2020-11-17 17:30:41', '2020-11-17 07:30:41', '', 'sime-basioli-BRkikoNP0KQ-unsplash', '', 'inherit', 'open', 'closed', '', 'sime-basioli-brkikonp0kq-unsplash', '', '', '2020-11-17 17:30:41', '2020-11-17 07:30:41', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/sime-basioli-BRkikoNP0KQ-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(551, 1, '2020-11-17 17:30:55', '2020-11-17 07:30:55', '', 'aaron-burson-aE3gcKW1BxU-unsplash', '', 'inherit', 'open', 'closed', '', 'aaron-burson-ae3gckw1bxu-unsplash', '', '', '2020-11-17 17:30:55', '2020-11-17 07:30:55', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/aaron-burson-aE3gcKW1BxU-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(552, 1, '2020-11-17 17:31:09', '2020-11-17 07:31:09', '', 'ben-neale-sQQf8Ao3dpk-unsplash', '', 'inherit', 'open', 'closed', '', 'ben-neale-sqqf8ao3dpk-unsplash', '', '', '2020-11-17 17:31:09', '2020-11-17 07:31:09', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/ben-neale-sQQf8Ao3dpk-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(553, 1, '2020-11-17 17:31:22', '2020-11-17 07:31:22', '', 'bady-abbas-hxi_yRxODNc-unsplash', '', 'inherit', 'open', 'closed', '', 'bady-abbas-hxi_yrxodnc-unsplash', '', '', '2020-11-17 17:31:22', '2020-11-17 07:31:22', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/bady-abbas-hxi_yRxODNc-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(554, 1, '2020-11-17 17:31:35', '2020-11-17 07:31:35', '', 'silvio-kundt-Fixg8KipOg8-unsplash', '', 'inherit', 'open', 'closed', '', 'silvio-kundt-fixg8kipog8-unsplash', '', '', '2020-11-17 17:31:35', '2020-11-17 07:31:35', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/silvio-kundt-Fixg8KipOg8-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(555, 1, '2020-11-17 17:31:45', '2020-11-17 07:31:45', '', 'ricardo-gomez-angel-5YM26lUicfU-unsplash', '', 'inherit', 'open', 'closed', '', 'ricardo-gomez-angel-5ym26luicfu-unsplash', '', '', '2020-11-17 17:31:45', '2020-11-17 07:31:45', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/ricardo-gomez-angel-5YM26lUicfU-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(556, 1, '2020-11-17 17:32:01', '2020-11-17 07:32:01', '', 'gerson-repreza-67gCKFVYh7s-unsplash', '', 'inherit', 'open', 'closed', '', 'gerson-repreza-67gckfvyh7s-unsplash', '', '', '2020-11-17 17:32:01', '2020-11-17 07:32:01', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/gerson-repreza-67gCKFVYh7s-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(557, 1, '2020-11-17 17:32:13', '2020-11-17 07:32:13', '', 'ave-calvar-NqXqLPhdbvU-unsplash', '', 'inherit', 'open', 'closed', '', 'ave-calvar-nqxqlphdbvu-unsplash', '', '', '2020-11-17 17:32:13', '2020-11-17 07:32:13', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/ave-calvar-NqXqLPhdbvU-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(558, 1, '2020-11-17 17:32:26', '2020-11-17 07:32:26', '', 'annie-spratt-6a3nqQ1YwBw-unsplash', '', 'inherit', 'open', 'closed', '', 'annie-spratt-6a3nqq1ywbw-unsplash', '', '', '2020-11-17 17:32:26', '2020-11-17 07:32:26', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/annie-spratt-6a3nqQ1YwBw-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(559, 1, '2020-11-17 17:32:38', '2020-11-17 07:32:38', '', 'ines-alvarez-fdez-_HHjiseEuGw-unsplash', '', 'inherit', 'open', 'closed', '', 'ines-alvarez-fdez-_hhjiseeugw-unsplash', '', '', '2020-11-17 17:32:38', '2020-11-17 07:32:38', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/ines-alvarez-fdez-_HHjiseEuGw-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(560, 1, '2020-11-17 17:32:48', '2020-11-17 07:32:48', '', 'solen-feyissa-AAMldegB0x8-unsplash', '', 'inherit', 'open', 'closed', '', 'solen-feyissa-aamldegb0x8-unsplash', '', '', '2020-11-17 17:32:48', '2020-11-17 07:32:48', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/solen-feyissa-AAMldegB0x8-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(561, 1, '2020-11-17 17:32:57', '2020-11-17 07:32:57', '', 'hans-peter-gauster-3y1zF4hIPCg-unsplash', '', 'inherit', 'open', 'closed', '', 'hans-peter-gauster-3y1zf4hipcg-unsplash', '', '', '2020-11-17 17:32:57', '2020-11-17 07:32:57', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/hans-peter-gauster-3y1zF4hIPCg-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(562, 1, '2020-11-17 17:33:14', '2020-11-17 07:33:14', '', 'scott-webb-OxHPDs4WV8Y-unsplash', '', 'inherit', 'open', 'closed', '', 'scott-webb-oxhpds4wv8y-unsplash', '', '', '2020-11-17 17:33:14', '2020-11-17 07:33:14', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/scott-webb-OxHPDs4WV8Y-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(563, 1, '2020-11-17 17:33:28', '2020-11-17 07:33:28', '', 'jj-ying-8bghKxNU1j0-unsplash', '', 'inherit', 'open', 'closed', '', 'jj-ying-8bghkxnu1j0-unsplash', '', '', '2020-11-17 17:33:28', '2020-11-17 07:33:28', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/jj-ying-8bghKxNU1j0-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(564, 1, '2020-11-17 17:33:38', '2020-11-17 07:33:38', '', 'nastya-dulhiier-OKOOGO578eo-unsplash', '', 'inherit', 'open', 'closed', '', 'nastya-dulhiier-okoogo578eo-unsplash', '', '', '2020-11-17 17:33:38', '2020-11-17 07:33:38', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/nastya-dulhiier-OKOOGO578eo-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(565, 1, '2020-11-17 17:33:52', '2020-11-17 07:33:52', '', 'alina-grubnyak-ZiQkhI7417A-unsplash', '', 'inherit', 'open', 'closed', '', 'alina-grubnyak-ziqkhi7417a-unsplash', '', '', '2020-11-17 17:33:52', '2020-11-17 07:33:52', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/alina-grubnyak-ZiQkhI7417A-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(566, 1, '2020-11-17 17:34:01', '2020-11-17 07:34:01', '', 'scott-webb-w0-PjhhbdS8-unsplash', '', 'inherit', 'open', 'closed', '', 'scott-webb-w0-pjhhbds8-unsplash', '', '', '2020-11-17 17:34:01', '2020-11-17 07:34:01', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/scott-webb-w0-PjhhbdS8-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(567, 1, '2020-11-17 17:54:01', '2020-11-17 07:54:01', '', 'agnieszka-kowalczyk-DFHfqEU2_iU-unsplash', '', 'inherit', 'open', 'closed', '', 'agnieszka-kowalczyk-dfhfqeu2_iu-unsplash', '', '', '2020-11-17 17:54:01', '2020-11-17 07:54:01', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/agnieszka-kowalczyk-DFHfqEU2_iU-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(568, 1, '2020-11-17 17:54:17', '2020-11-17 07:54:17', '', 'quentin-grignet-sz8iZG7ZDUM-unsplash', '', 'inherit', 'open', 'closed', '', 'quentin-grignet-sz8izg7zdum-unsplash', '', '', '2020-11-17 17:54:17', '2020-11-17 07:54:17', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/quentin-grignet-sz8iZG7ZDUM-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(569, 1, '2020-11-17 17:54:33', '2020-11-17 07:54:33', '', 'filmplusdigital-aYTeEuoObOA-unsplash', '', 'inherit', 'open', 'closed', '', 'filmplusdigital-ayteeuooboa-unsplash', '', '', '2020-11-17 17:54:33', '2020-11-17 07:54:33', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/filmplusdigital-aYTeEuoObOA-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(570, 1, '2020-11-17 17:54:45', '2020-11-17 07:54:45', '', 'dhaval-tejlavwala-ZYD9y6tjjV0-unsplash', '', 'inherit', 'open', 'closed', '', 'dhaval-tejlavwala-zyd9y6tjjv0-unsplash', '', '', '2020-11-17 17:54:45', '2020-11-17 07:54:45', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/dhaval-tejlavwala-ZYD9y6tjjV0-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(571, 1, '2020-11-17 17:57:11', '2020-11-17 07:57:11', '', 'alexander-R9STtQ_2Mio-unsplash', '', 'inherit', 'open', 'closed', '', 'alexander-r9sttq_2mio-unsplash', '', '', '2020-11-17 17:57:11', '2020-11-17 07:57:11', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/alexander-R9STtQ_2Mio-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(572, 1, '2020-11-17 18:04:16', '2020-11-17 08:04:16', '', 'andre-furtado-YogNFEK9AdI-unsplash', '', 'inherit', 'open', 'closed', '', 'andre-furtado-yognfek9adi-unsplash', '', '', '2020-11-17 18:04:16', '2020-11-17 08:04:16', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/andre-furtado-YogNFEK9AdI-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(573, 1, '2020-11-17 18:04:36', '2020-11-17 08:04:36', '', 'peter-mode-7yy11Tepd98-unsplash', '', 'inherit', 'open', 'closed', '', 'peter-mode-7yy11tepd98-unsplash', '', '', '2020-11-17 18:04:36', '2020-11-17 08:04:36', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/peter-mode-7yy11Tepd98-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(574, 1, '2020-11-17 18:04:48', '2020-11-17 08:04:48', '', 'sam-williams-MTDKcBaetJk-unsplash', '', 'inherit', 'open', 'closed', '', 'sam-williams-mtdkcbaetjk-unsplash', '', '', '2020-11-17 18:04:48', '2020-11-17 08:04:48', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/sam-williams-MTDKcBaetJk-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(575, 1, '2020-11-17 18:05:02', '2020-11-17 08:05:02', '', 'jay-wennington-tih8-LWp_qc-unsplash', '', 'inherit', 'open', 'closed', '', 'jay-wennington-tih8-lwp_qc-unsplash', '', '', '2020-11-17 18:05:02', '2020-11-17 08:05:02', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/jay-wennington-tih8-LWp_qc-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(576, 1, '2020-11-17 18:05:12', '2020-11-17 08:05:12', '', 'kieran-manion-mH68LZOoGLY-unsplash', '', 'inherit', 'open', 'closed', '', 'kieran-manion-mh68lzoogly-unsplash', '', '', '2020-11-17 18:05:12', '2020-11-17 08:05:12', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/kieran-manion-mH68LZOoGLY-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(577, 1, '2020-11-17 18:22:34', '2020-11-17 08:22:34', '', 'GC', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-17-at-18-21-20', '', '', '2020-11-17 18:22:58', '2020-11-17 08:22:58', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-17-at-18.21.20.png', 0, 'attachment', 'image/png', 0),
(578, 1, '2020-11-17 18:25:04', '2020-11-17 08:25:04', '[vc_row][vc_column][ultimate_spacer height=\"10\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-17 18:25:04', '2020-11-17 08:25:04', '', 24, 'http://localhost:8888/wordpress/2020/11/17/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(579, 1, '2020-11-17 18:26:52', '2020-11-17 08:26:52', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605601560228-3f3cc473-8f91-3\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605601560230-fc324e17-4aa4-10\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 18:26:52', '2020-11-17 08:26:52', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0),
(580, 1, '2020-11-17 18:31:53', '2020-11-17 08:31:53', '[vc_row][vc_column][ultimate_spacer height=\"20\" height_on_mob_landscape=\"0\" height_on_mob=\"0\"][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-17 18:31:53', '2020-11-17 08:31:53', '', 24, 'http://localhost:8888/wordpress/2020/11/17/24-revision-v1/', 0, 'revision', '', 0),
(581, 1, '2020-11-17 18:33:17', '2020-11-17 08:33:17', '', 'Screen Shot 2020-11-17 at 18.31.30', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-17-at-18-31-30', '', '', '2020-11-17 18:33:17', '2020-11-17 08:33:17', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-17-at-18.31.30.png', 0, 'attachment', 'image/png', 0),
(582, 1, '2020-11-17 18:33:25', '2020-11-17 08:33:25', '', 'Screen Shot 2020-11-17 at 18.29.36', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-17-at-18-29-36', '', '', '2020-11-17 18:33:25', '2020-11-17 08:33:25', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-17-at-18.29.36.png', 0, 'attachment', 'image/png', 0),
(583, 1, '2020-11-17 18:33:32', '2020-11-17 08:33:32', '', 'Screen Shot 2020-11-17 at 18.21.20', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-17-at-18-21-20-2', '', '', '2020-11-17 18:33:32', '2020-11-17 08:33:32', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-17-at-18.21.20-1.png', 0, 'attachment', 'image/png', 0),
(584, 1, '2020-11-17 18:33:41', '2020-11-17 08:33:41', '', 'Screen Shot 2020-11-17 at 18.15.11', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-17-at-18-15-11', '', '', '2020-11-17 18:33:41', '2020-11-17 08:33:41', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-17-at-18.15.11.png', 0, 'attachment', 'image/png', 0),
(585, 1, '2020-11-17 18:43:40', '2020-11-17 08:43:40', '', 'Screen Shot 2020-11-17 at 18.31.30', '', 'inherit', 'open', 'closed', '', 'screen-shot-2020-11-17-at-18-31-30-2', '', '', '2020-11-17 18:43:40', '2020-11-17 08:43:40', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-17-at-18.31.30-1.png', 0, 'attachment', 'image/png', 0),
(586, 1, '2020-11-17 18:46:14', '2020-11-17 08:46:14', '', 'silvio-kundt-Fixg8KipOg8-unsplash_edited', '', 'inherit', 'open', 'closed', '', 'silvio-kundt-fixg8kipog8-unsplash_edited', '', '', '2020-11-17 18:46:14', '2020-11-17 08:46:14', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/silvio-kundt-Fixg8KipOg8-unsplash_edited.jpg', 0, 'attachment', 'image/jpeg', 0),
(587, 1, '2020-11-17 18:50:34', '2020-11-17 08:50:34', '', 'quentin-grignet-sz8iZG7ZDUM-unsplash_edited', '', 'inherit', 'open', 'closed', '', 'quentin-grignet-sz8izg7zdum-unsplash_edited', '', '', '2020-11-17 18:50:34', '2020-11-17 08:50:34', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/quentin-grignet-sz8iZG7ZDUM-unsplash_edited.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(588, 1, '2020-11-17 18:54:38', '2020-11-17 08:54:38', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-mlvp-jquery\" layer_image=\"388\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605316507762{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"20\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 18:54:38', '2020-11-17 08:54:38', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(589, 1, '2020-11-17 19:00:06', '2020-11-17 09:00:06', '', 'ricardo-gomez-angel-5YM26lUicfU-unsplash_edited', '', 'inherit', 'open', 'closed', '', 'ricardo-gomez-angel-5ym26luicfu-unsplash_edited', '', '', '2020-11-17 19:00:06', '2020-11-17 09:00:06', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/ricardo-gomez-angel-5YM26lUicfU-unsplash_edited.jpg', 0, 'attachment', 'image/jpeg', 0),
(591, 1, '2020-11-17 19:23:58', '2020-11-17 09:23:58', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1605605033510{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605604886605-aacbf8ac-ec25-10\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605604886608-c0d6ff85-bcd6-7\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 19:23:58', '2020-11-17 09:23:58', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0),
(592, 1, '2020-11-17 19:28:19', '2020-11-17 09:28:19', '[vc_row bg_type=\"image\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"20\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:28:19', '2020-11-17 09:28:19', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(593, 1, '2020-11-17 19:29:58', '2020-11-17 09:29:58', '[vc_row bg_type=\"image\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"20\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:29:58', '2020-11-17 09:29:58', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(594, 1, '2020-11-17 19:31:14', '2020-11-17 09:31:14', '[vc_row][vc_column][vc_single_image image=\"209\"][/vc_column][/vc_row][vc_row bg_type=\"image\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_spacer height=\"20\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:31:14', '2020-11-17 09:31:14', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(595, 1, '2020-11-17 19:32:12', '2020-11-17 09:32:12', '[vc_row][vc_column][ultimate_spacer height=\"20\"][vc_single_image image=\"209\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row bg_type=\"image\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:32:12', '2020-11-17 09:32:12', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(596, 1, '2020-11-17 19:33:48', '2020-11-17 09:33:48', '[vc_row bg_type=\"image\" css=\".vc_custom_1605605624440{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/38854596_2179926098920639_5832582175131697152_n.jpg?id=209) !important;}\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:33:48', '2020-11-17 09:33:48', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(597, 1, '2020-11-17 19:36:31', '2020-11-17 09:36:31', '[vc_row bg_type=\"image\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605605787886{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:36:31', '2020-11-17 09:36:31', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(598, 1, '2020-11-17 19:37:06', '2020-11-17 09:37:06', '[vc_row bg_type=\"image\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:37:06', '2020-11-17 09:37:06', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(599, 1, '2020-11-17 19:38:16', '2020-11-17 09:38:16', '[vc_row bg_type=\"image\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605605296669{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:38:16', '2020-11-17 09:38:16', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(600, 1, '2020-11-17 19:43:04', '2020-11-17 09:43:04', '[vc_row parallax=\"content-moving\" parallax_image=\"557\" bg_type=\"image\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605606180054{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:43:04', '2020-11-17 09:43:04', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(601, 1, '2020-11-17 19:45:48', '2020-11-17 09:45:48', '[vc_row parallax=\"content-moving\" parallax_image=\"557\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^552|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/ben-neale-sQQf8Ao3dpk-unsplash-scaled.jpg|caption^null|alt^null|title^ben-neale-sQQf8Ao3dpk-unsplash|description^null\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605606345298{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:45:48', '2020-11-17 09:45:48', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(602, 1, '2020-11-17 19:47:12', '2020-11-17 09:47:12', '[vc_row parallax=\"content-moving\" parallax_image=\"557\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605606375164{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1605606427050{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg?id=388) !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:47:12', '2020-11-17 09:47:12', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(603, 1, '2020-11-17 19:48:41', '2020-11-17 09:48:41', '[vc_row parallax=\"content-moving\" parallax_image=\"557\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605606375164{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:48:41', '2020-11-17 09:48:41', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(604, 1, '2020-11-17 19:54:09', '2020-11-17 09:54:09', '<p>[vc_row parallax=\"content-moving\" parallax_image=\"557\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605606375164{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: center;background-repeat: no-repeat;background-size: cover !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.</p>\n<p>WE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358</p>\n<p>42-60 Albert Street</p>\n<p>BRISBANE CITY</p>\n<p>QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<blockquote><p>&nbsp;</p>\n<p>\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 19:54:09', '2020-11-17 09:54:09', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(605, 1, '2020-11-17 20:33:30', '2020-11-17 10:33:30', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column el_class=\"wide-box-mobile\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481236650908{margin-top: 100px !important;margin-bottom: 100px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1605605033510{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605609010920-0dc78b72-2239-2\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605609010922-290d2a6b-ead5-6\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 20:33:30', '2020-11-17 10:33:30', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(606, 1, '2020-11-17 20:37:56', '2020-11-17 10:37:56', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column el_class=\"wide-box-mobile\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605609465581{margin-top: 100px !important;margin-bottom: 100px !important;}\" bg_color_value=\"#f0f0f0\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605609252803-152195f6-aeac-1\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605609252807-b17805ed-fc27-0\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 20:37:56', '2020-11-17 10:37:56', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0),
(607, 1, '2020-11-17 20:39:57', '2020-11-17 10:39:57', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column el_class=\"wide-box-mobile\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605609592959{margin-top: 100px !important;margin-bottom: 100px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column width=\"1/3\" css=\".vc_custom_1476030875969{padding-right: 20px !important;}\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476030881601{padding-left: 20px !important;}\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605609507342-6376c634-16cf-5\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605609507346-abac75c8-32ae-9\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 20:39:57', '2020-11-17 10:39:57', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(608, 1, '2020-11-17 20:46:01', '2020-11-17 10:46:01', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605609777177-086e07b2-f416-3\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605609777181-f694ac20-82e2-8\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 20:46:01', '2020-11-17 10:46:01', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0),
(609, 1, '2020-11-17 20:47:19', '2020-11-17 10:47:19', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605609989085-a538f1d8ff73f4affc5aa33921b17c4d-0\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605609989927-896b766f34ddb14e6dead7dc4edbab84-2\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 20:47:19', '2020-11-17 10:47:19', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(610, 1, '2020-11-17 20:48:19', '2020-11-17 10:48:19', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605610095386{margin-top: 120px !important;margin-bottom: 60px !important;}\" bg_color_value=\"#f0f0f0\"][vc_column][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_media_grid grid_id=\"vc_gid:1605610045637-0b35ff16-3d6c-5\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605610045642-d6036de8-2f80-5\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 20:48:19', '2020-11-17 10:48:19', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0),
(611, 1, '2020-11-17 20:49:40', '2020-11-17 10:49:40', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605610095386{margin-top: 120px !important;margin-bottom: 60px !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605610172543{background-color: #f0f0f0 !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_media_grid grid_id=\"vc_gid:1605610131344-1d31b04f-6f0c-5\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605610131347-f30e5776-9428-5\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 20:49:40', '2020-11-17 10:49:40', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(612, 1, '2020-11-17 20:53:19', '2020-11-17 10:53:19', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605610247163{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605610282159{background-color: #f0f0f0 !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605610207030-5c58b676b41752fd583e7b73f6541a05-4\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605610208055-eb79c8dbc80066a57e782211dd6d6c0f-8\" include=\"210,207,206\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 20:53:19', '2020-11-17 10:53:19', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0),
(613, 1, '2020-11-20 17:34:55', '2020-11-20 07:34:55', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605857635937-57bed873-6cd8-5\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605857635941-b20d9f10-169f-8\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][vc_custom_heading text=\"ENGAGING FUTURES (c) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-autosave-v1', '', '', '2020-11-20 17:34:55', '2020-11-20 07:34:55', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(614, 1, '2020-11-17 20:58:29', '2020-11-17 10:58:29', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605610247163{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605610282159{background-color: #f0f0f0 !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605610414252-005eb04f-e803-3\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_media_grid grid_id=\"vc_gid:1605610414256-988a34d1-4cf4-1\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 20:58:29', '2020-11-17 10:58:29', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0),
(615, 1, '2020-11-17 21:03:46', '2020-11-17 11:03:46', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" css=\".vc_custom_1605610247163{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605610282159{background-color: #f0f0f0 !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605610965221-6f4b2dce-c7b1-4\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611018824{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_media_grid grid_id=\"vc_gid:1605610965224-ccd0443d-5672-0\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 21:03:46', '2020-11-17 11:03:46', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(616, 1, '2020-11-17 21:08:14', '2020-11-17 11:08:14', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1497195458103{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605611068085-ad6f16eac987ba45d6da4b81428271c1-3\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611018824{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_media_grid grid_id=\"vc_gid:1605611068980-c13734a389430ef08c18442b0cdabee8-7\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][vc_custom_heading text=\"OUR STRUCTURE\" font_container=\"tag:h2|font_size:26px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 21:08:14', '2020-11-17 11:08:14', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0),
(617, 1, '2020-11-17 21:19:49', '2020-11-17 11:19:49', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605611957970-013cd4db-984e-1\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605611957978-315d1a7c-fa2d-3\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 21:19:49', '2020-11-17 11:19:49', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(618, 1, '2020-11-17 21:21:27', '2020-11-17 11:21:27', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605612040613-85b223a0041d42e31c80d4503d25f6f8-5\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605612041477-bf57db99be33c24b9b237ab2b4e5fa4d-5\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Our hope is that the pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-17 21:21:27', '2020-11-17 11:21:27', '', 18, 'http://localhost:8888/wordpress/2020/11/17/18-revision-v1/', 0, 'revision', '', 0),
(619, 1, '2020-11-17 22:34:12', '2020-11-17 12:34:12', '<p>[vc_row full_width=\"stretch_row_content\" parallax=\"content-moving\" parallax_image=\"388\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605612226035{margin-bottom: 40px !important;padding-bottom: 40px !important;background-position: 0 0;background-repeat:-repeat !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space css=\".vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][vc_empty_space][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.</p>\n<p>WE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358</p>\n<p>42-60 Albert Street</p>\n<p>BRISBANE CITY</p>\n<p>QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<blockquote><p>&nbsp;</p>\n<p>\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 22:34:12', '2020-11-17 12:34:12', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(620, 1, '2020-11-17 22:49:42', '2020-11-17 12:49:42', '', 'pexels-pixabay-210158', '', 'inherit', 'open', 'closed', '', 'pexels-pixabay-210158', '', '', '2020-11-17 22:49:42', '2020-11-17 12:49:42', '', 29, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/pexels-pixabay-210158.jpg', 0, 'attachment', 'image/jpeg', 0),
(621, 1, '2020-11-17 22:50:07', '2020-11-17 12:50:07', '[vc_row full_width=\"stretch_row_content\" parallax=\"content-moving\" parallax_image=\"620\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605617404393{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space css=\".vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][vc_empty_space][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-17 22:50:07', '2020-11-17 12:50:07', '', 29, 'http://localhost:8888/wordpress/2020/11/17/29-revision-v1/', 0, 'revision', '', 0),
(622, 1, '2020-11-17 22:55:07', '2020-11-17 12:55:07', '', 'photo-1516432887776-cf02336463c7_edited', '', 'inherit', 'open', 'closed', '', 'photo-1516432887776-cf02336463c7_edited', '', '', '2020-11-17 22:55:07', '2020-11-17 12:55:07', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/photo-1516432887776-cf02336463c7_edited.jpg', 0, 'attachment', 'image/jpeg', 0),
(623, 1, '2020-11-17 22:58:44', '2020-11-17 12:58:44', '', 'vita-vilcina-VMLGC5A3QTE-unsplash', '', 'inherit', 'open', 'closed', '', 'vita-vilcina-vmlgc5a3qte-unsplash', '', '', '2020-11-17 22:58:44', '2020-11-17 12:58:44', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/vita-vilcina-VMLGC5A3QTE-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(624, 1, '2020-11-17 22:58:57', '2020-11-17 12:58:57', '', 'karl-magnuson-LaHgrqo1ZRk-unsplash', '', 'inherit', 'open', 'closed', '', 'karl-magnuson-lahgrqo1zrk-unsplash', '', '', '2020-11-17 22:58:57', '2020-11-17 12:58:57', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/karl-magnuson-LaHgrqo1ZRk-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(625, 1, '2020-11-17 22:59:05', '2020-11-17 12:59:05', '', 'karen-kayser-rdtkE1fHi6c-unsplash', '', 'inherit', 'open', 'closed', '', 'karen-kayser-rdtke1fhi6c-unsplash', '', '', '2020-11-17 22:59:05', '2020-11-17 12:59:05', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/karen-kayser-rdtkE1fHi6c-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(626, 1, '2020-11-17 23:02:35', '2020-11-17 13:02:35', '', 'karen-kayser-rdtkE1fHi6c-unsplash_edited', '', 'inherit', 'open', 'closed', '', 'karen-kayser-rdtke1fhi6c-unsplash_edited', '', '', '2020-11-17 23:02:35', '2020-11-17 13:02:35', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2020/11/karen-kayser-rdtkE1fHi6c-unsplash_edited.jpg', 0, 'attachment', 'image/jpeg', 0),
(627, 1, '2020-11-20 14:18:48', '2020-11-20 04:18:48', '<p>[vc_row full_width=\"stretch_row_content\" parallax=\"content-moving\" parallax_image=\"620\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605617404393{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space css=\".vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.</p>\n<p>WE CREATE THE PREFERRED FUTURE.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358</p>\n<p>42-60 Albert Street</p>\n<p>BRISBANE CITY</p>\n<p>QLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<blockquote><p>&nbsp;</p>\n<p>\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:18:48', '2020-11-20 04:18:48', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(628, 1, '2020-11-20 14:20:33', '2020-11-20 04:20:33', '[vc_row full_width=\"stretch_row_content\" parallax=\"content-moving\" parallax_image=\"620\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605617404393{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space css=\".vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_tabs=\"10\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:20:33', '2020-11-20 04:20:33', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(629, 1, '2020-11-20 14:21:27', '2020-11-20 04:21:27', '[vc_row full_width=\"stretch_row_content\" parallax=\"content-moving\" parallax_image=\"620\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605617404393{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605325757246{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space css=\".vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][ultimate_spacer height=\"\" height_on_tabs=\"1\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:21:27', '2020-11-20 04:21:27', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(630, 1, '2020-11-20 14:22:56', '2020-11-20 04:22:56', '[vc_row full_width=\"stretch_row_content\" parallax=\"content-moving\" parallax_image=\"620\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605617404393{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605846173049{background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space css=\".vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][ultimate_spacer height=\"\" height_on_tabs=\"1\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:22:56', '2020-11-20 04:22:56', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(631, 1, '2020-11-22 11:21:25', '2020-11-22 01:21:25', '<p>[vc_row gap=\"20\" bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][vc_empty_space][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]</p>\n<h1>CREATE ENGAGING FUTURES</h1>\n<p>[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-autosave-v1', '', '', '2020-11-22 11:21:25', '2020-11-22 01:21:25', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(632, 1, '2020-11-20 14:25:19', '2020-11-20 04:25:19', '[vc_row full_width=\"stretch_row_content\" parallax=\"content-moving\" parallax_image=\"620\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605846315561{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605846226709{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space css=\".vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][ultimate_spacer height=\"\" height_on_tabs=\"1\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:25:19', '2020-11-20 04:25:19', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(633, 1, '2020-11-20 14:30:43', '2020-11-20 04:30:43', '[vc_row full_width=\"stretch_row_content\" parallax=\"content-moving\" parallax_image=\"620\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"9\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605846315561{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1605846226709{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space css=\".vc_custom_1605612742108{background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\"][ultimate_heading main_heading=\"WANT TO ADAPT A LITTLE OR FULLY TRANSFORM?\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]WE ARE ENGAGING FUTURES.\r\n\r\nWE CREATE THE PREFERRED FUTURE.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Address All Mail To Parcel Collect 10099 67358\r\n\r\n42-60 Albert Street\r\n\r\nBRISBANE CITY\r\n\r\nQLD 4002[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][ultimate_spacer height=\"\" height_on_tabs=\"1\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<blockquote>&nbsp;\r\n\r\n\"We are Engaging Futures and through our Clients, the year 2050 has already begun\"</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE MAPLE AGENCY\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\"][vc_column][contact-form-7 id=\"8932\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9901|url^http://treekode.com/maple/onepage6/wp-content/uploads/sites/10/2016/12/IMG_0292b.jpg|caption^null|alt^null|title^IMG_0292b|description^null\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(25,25,25,0.89)\" seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_svg_height=\"20\" seperator_shape_background=\"#101010\"][vc_column width=\"1/2\"][vc_row_inner el_class=\"mobile-text-center\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_spacer height=\"200\" height_on_tabs_portrait=\"200\" height_on_mob_landscape=\"60\" height_on_mob=\"20\"][ultimate_heading main_heading=\"WE LOVE YOU!\" main_heading_color=\"#42cec5\" sub_heading_color=\"#f7f7f7\" alignment=\"right\" main_heading_font_family=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" main_heading_style=\"font-weight:600;\" main_heading_font_size=\"desktop:14px;tablet_portrait:25px;mobile_landscape:16px;mobile:16px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:38px;tablet_portrait:30px;mobile_landscape:20px;mobile:13px;\" sub_heading_line_height=\"desktop:44px;tablet_portrait:35px;\" main_heading_line_height=\"desktop:40px;tablet_portrait:30px;mobile_landscape:24px;mobile:20px;\" main_heading_margin=\"margin-bottom:15PX;\"]COME VISIT US ON OUR OFFICE IN MELBOURNE[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][ultimate_google_map height=\"600px\" lat=\"-37.8122\" lng=\"144.9538\" zoom=\"12\" scrollwheel=\"disable\" zoomcontrol=\"true\" grayscale=\"enable\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaS5idXNpbmVzcyUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyZ2VvbWV0cnkuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNiNGQ0ZTElMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West Victoria 8007 Australia[/ultimate_google_map][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:30:43', '2020-11-20 04:30:43', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(634, 1, '2020-11-20 14:37:37', '2020-11-20 04:37:37', '[vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_spacer height=\"20\"][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:37:37', '2020-11-20 04:37:37', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(635, 1, '2020-11-20 14:39:43', '2020-11-20 04:39:43', '[vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}\" bg_color_value=\"#101010\"][vc_column][vc_empty_space height=\"20px\"][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:39:43', '2020-11-20 04:39:43', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(636, 1, '2020-11-20 14:52:49', '2020-11-20 04:52:49', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:52:49', '2020-11-20 04:52:49', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(637, 1, '2020-11-20 14:53:21', '2020-11-20 04:53:21', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1497198147451{padding-top: 120px !important;padding-bottom: 80px !important;}\" bg_color_value=\"#101010\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:53:21', '2020-11-20 04:53:21', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(638, 1, '2020-11-20 14:54:40', '2020-11-20 04:54:40', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:54:40', '2020-11-20 04:54:40', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(639, 1, '2020-11-20 14:56:29', '2020-11-20 04:56:29', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:56:29', '2020-11-20 04:56:29', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(640, 1, '2020-11-20 14:59:47', '2020-11-20 04:59:47', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"REQUIRE A PROFESSIONAL FUTURES SERVICE?: CONTACT US\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 14:59:47', '2020-11-20 04:59:47', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(641, 1, '2020-11-20 15:00:42', '2020-11-20 05:00:42', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"REQUIRE A PROFESSIONAL FUTURES SERVICE?: CONTACT US\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 15:00:42', '2020-11-20 05:00:42', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(642, 1, '2020-11-20 15:01:32', '2020-11-20 05:01:32', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A PROFESSIONAL FUTURES SERVICE\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 15:01:32', '2020-11-20 05:01:32', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(643, 1, '2020-11-20 15:02:28', '2020-11-20 05:02:28', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A FUTURIST\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#101010\" css=\".vc_custom_1497197804334{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 15:02:28', '2020-11-20 05:02:28', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(644, 1, '2020-11-20 15:03:16', '2020-11-20 05:03:16', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A FUTURIST\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\" css=\".vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#f4f4f4\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" title_font_line_height=\"12\" desc_font_size=\"18\" desc_font_line_height=\"22\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 15:03:16', '2020-11-20 05:03:16', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(645, 1, '2020-11-20 15:08:07', '2020-11-20 05:08:07', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A FUTURIST\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\" css=\".vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#000000\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:18px;\" desc_font_line_height=\"desktop:22px;\"]Brisbane | Sydney | Melbourne | Adelaide | Perth[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 15:08:07', '2020-11-20 05:08:07', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(646, 1, '2020-11-20 15:09:08', '2020-11-20 05:09:08', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\" css=\".vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#000000\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:18px;\" desc_font_line_height=\"desktop:22px;\"]Brisbane | Sydney | Melbourne | Adelaide | Perth[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A FUTURIST\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 15:09:08', '2020-11-20 05:09:08', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(647, 1, '2020-11-20 15:09:57', '2020-11-20 05:09:57', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A FUTURIST\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\" css=\".vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#000000\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:18px;\" desc_font_line_height=\"desktop:22px;\"]Brisbane | Sydney | Melbourne | Adelaide | Perth[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 15:09:57', '2020-11-20 05:09:57', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(648, 1, '2020-11-20 15:31:05', '2020-11-20 05:31:05', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ult_content_box][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A FUTURIST\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][/ult_content_box][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\" css=\".vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#000000\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:18px;\" desc_font_line_height=\"desktop:22px;\"]Brisbane | Sydney | Melbourne | Adelaide | Perth[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 15:31:05', '2020-11-20 05:31:05', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(649, 1, '2020-11-20 15:44:11', '2020-11-20 05:44:11', '<p>[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/3\"][ult_content_box][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A FUTURIST\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][/ult_content_box][/vc_column][vc_column width=\"1/3\"][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\" css=\".vc_custom_1605848592784{padding-top: 50px !important;padding-bottom: 30px !important;}\"][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#000000\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:18px;\" desc_font_line_height=\"desktop:22px;\"]Brisbane | Sydney | Melbourne | Adelaide | Perth[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 15:44:11', '2020-11-20 05:44:11', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(650, 1, '2020-11-20 15:49:27', '2020-11-20 05:49:27', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ult_content_box][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A FUTURIST\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_section][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#000000\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:18px;\" desc_font_line_height=\"desktop:22px;\"]Brisbane | Sydney | Melbourne | Adelaide | Perth[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][/vc_section][/ult_content_box][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 15:49:27', '2020-11-20 05:49:27', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(651, 1, '2020-11-20 16:30:02', '2020-11-20 06:30:02', '[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ult_content_box][/ult_content_box][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A FUTURIST\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#000000\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:18px;\" desc_font_line_height=\"desktop:22px;\"]Brisbane | Sydney | Melbourne | Adelaide | Perth[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][/vc_column][/vc_row][vc_column width=\"1/3\"][/vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 16:30:02', '2020-11-20 06:30:02', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(652, 1, '2020-11-20 17:09:43', '2020-11-20 07:09:43', '<p>[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][vc_row][/vc_row][vc_column][/vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_override=\"ex-full\" css=\".vc_custom_1605848077340{padding-top: 120px !important;padding-bottom: 80px !important;}\"][vc_column][ult_content_box][/ult_content_box][ultimate_heading spacer=\"icon_only\" icon=\"linearicons-map\" icon_size=\"50\" icon_color=\"#e0e0e0\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE\'RE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHEN YOU REQUIRE A FUTURIST\" font_container=\"tag:h2|font_size:44px|text_align:center|color:%23f4f4f4\" use_theme_fonts=\"yes\"][vc_row][/vc_row][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon=\"Defaults-newspaper-o\" icon_size=\"34\" icon_color=\"#000000\" icon_animation=\"fadeInDown\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:18px;\" desc_font_line_height=\"desktop:22px;\"]Brisbane | Sydney | Melbourne | Adelaide | Perth[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-at\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"]geral@maple.com[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"Defaults-fax\" icon_size=\"34\" icon_color=\"#f4f4f4\" pos=\"top\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Raleway|font_call:Raleway|variant:300\" desc_font_style=\"font-weight:300;\" title_font_size=\"16\" desc_font_size=\"18\" desc_font_line_height=\"22\"](+23) 345 322 233[/bsf-info-box][vc_row][/vc_row][vc_column][/vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row][vc_column width=\"1/3\"][/vc_column][vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][ultimate_spacer height=\"20\"][vc_row][/vc_row][vc_column][/vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#ffffff\"][vc_column][contact-form-7 id=\"430\"][ultimate_spacer height=\"50\"][vc_row][/vc_row][vc_column][/vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][vc_row][/vc_row][vc_column][/vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"3060\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"FIN US ON THE MAP\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West<br />\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:09:43', '2020-11-20 07:09:43', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(653, 1, '2020-11-20 17:12:41', '2020-11-20 07:12:41', '[vc_column][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][vc_column][/vc_column][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:12:41', '2020-11-20 07:12:41', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(654, 1, '2020-11-20 17:13:31', '2020-11-20 07:13:31', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:13:31', '2020-11-20 07:13:31', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(655, 1, '2020-11-20 17:14:27', '2020-11-20 07:14:27', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"3060\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"FIN US ON THE MAP\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][ultimate_google_map lat=\"-37.81382\" lng=\"144.96953\" zoom=\"12\" streetviewcontrol=\"true\" maptypecontrol=\"true\" map_style=\"JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJhZG1pbmlzdHJhdGl2ZSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLnRleHQuZmlsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzQ0NDQ0NCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIybGFuZHNjYXBlJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmMmYyZjIlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnBvaSUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnJvYWQlMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJzYXR1cmF0aW9uJTIyJTNBLTEwMCU3RCUyQyU3QiUyMmxpZ2h0bmVzcyUyMiUzQTQ1JTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmFsbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5hcnRlcmlhbCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIybGFiZWxzLmljb24lMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIydHJhbnNpdCUyMiUyQyUyMmVsZW1lbnRUeXBlJTIyJTNBJTIyYWxsJTIyJTJDJTIyc3R5bGVycyUyMiUzQSU1QiU3QiUyMnZpc2liaWxpdHklMjIlM0ElMjJvZmYlMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMndhdGVyJTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJhbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjM0NmJjZWMlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlNUQ=\" pancontrol=\"true\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/ultimate_google_map][/ult_animation_block][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:14:27', '2020-11-20 07:14:27', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(656, 1, '2020-11-20 17:18:24', '2020-11-20 07:18:24', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:18:24', '2020-11-20 07:18:24', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(657, 1, '2020-11-20 17:22:11', '2020-11-20 07:22:11', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\" css=\".vc_custom_1605856901830{background-image: url(http://localhost:8888/wordpress/wp-content/uploads/revslider/alias/arrow1.png?id=426) !important;}\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:22:11', '2020-11-20 07:22:11', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(658, 1, '2020-11-20 17:23:40', '2020-11-20 07:23:40', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^9566|url^http://treekode.com/maple/wp-content/uploads/2016/07/324523.jpg|caption^null|alt^null|title^324523|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1481490714133{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West<br />\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:23:40', '2020-11-20 07:23:40', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(659, 1, '2020-11-20 17:26:44', '2020-11-20 07:26:44', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^569|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/filmplusdigital-aYTeEuoObOA-unsplash-scaled.jpg|caption^null|alt^null|title^filmplusdigital-aYTeEuoObOA-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605857200127{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]\r\n<blockquote>Through our Clients, 2050 commences today.</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:26:44', '2020-11-20 07:26:44', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(660, 1, '2020-11-20 17:27:46', '2020-11-20 07:27:46', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^581|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-17-at-18.31.30.png|caption^null|alt^null|title^Screen Shot 2020-11-17 at 18.31.30|description^null\" bg_image_repeat=\"no-repeat\" bg_image_size=\"contain\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605857263014{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]\r\n<blockquote>Through our Clients, 2050 commences today.</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:27:46', '2020-11-20 07:27:46', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(661, 1, '2020-11-20 17:28:17', '2020-11-20 07:28:17', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^581|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-17-at-18.31.30.png|caption^null|alt^null|title^Screen Shot 2020-11-17 at 18.31.30|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605857293272{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]PO Box 16122 Collins Street West\r\nVictoria 8007 Australia[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]geral@maple.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"__USE_THEME_MAIN_COLOR__\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+23) 345 322 233[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]\r\n<blockquote>Through our Clients, 2050 commences today.</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:28:17', '2020-11-20 07:28:17', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(662, 1, '2020-11-20 17:31:02', '2020-11-20 07:31:02', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^581|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-17-at-18.31.30.png|caption^null|alt^null|title^Screen Shot 2020-11-17 at 18.31.30|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605857293272{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"\" icon_animation=\"fadeInDown\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:31:02', '2020-11-20 07:31:02', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(663, 1, '2020-11-20 17:33:01', '2020-11-20 07:33:01', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^581|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-17-at-18.31.30.png|caption^null|alt^null|title^Screen Shot 2020-11-17 at 18.31.30|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605857293272{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 17:33:01', '2020-11-20 07:33:01', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(664, 1, '2020-11-20 17:35:28', '2020-11-20 07:35:28', '[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\r\nWe facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.\r\n\r\nIt is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.\r\n\r\nWe bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.\r\n\r\nOur pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.\r\n\r\n``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Connecting People To Aspirations</h4>\r\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\r\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Conducting Workshops Locally And Globally</h4>\r\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\r\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>Our Approach</h4>\r\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\r\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605857635937-57bed873-6cd8-5\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]\r\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605857635941-b20d9f10-169f-8\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]\r\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\r\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\r\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\r\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\r\n\r\n<h5 class=\"font_5\">The Futures Board</h5>\r\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\r\n\r\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\r\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\r\n\r\n<h5 class=\"font_5\">Our Client Network</h5>\r\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\r\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\r\n\r\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\r\n<blockquote>\r\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\r\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\r\n&nbsp;\r\n\r\n&nbsp;</blockquote>\r\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"The pathway to the future will be brilliantly lit for the next generation, with the fullness of today\'s knowledge and wisdom.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"ENGAGING FUTURES (c) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-20 17:35:28', '2020-11-20 07:35:28', '', 18, 'http://localhost:8888/wordpress/2020/11/20/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(665, 1, '2020-11-20 18:08:01', '2020-11-20 08:08:01', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605859331039-4d0f6598088fb4e16b69de4483882f96-4\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605859332053-f36310989a65b9ac6070f01b8039f233-10\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create engaging futures and light the path for the next generation. </p>\n<p>Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\" css=\".vc_custom_1605859665759{margin-top: px !important;}\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-20 18:08:01', '2020-11-20 08:08:01', '', 18, 'http://localhost:8888/wordpress/2020/11/20/18-revision-v1/', 0, 'revision', '', 0),
(666, 1, '2020-11-20 18:09:12', '2020-11-20 08:09:12', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605859732282-d4804c41-e700-5\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605859732288-edbb134b-2748-3\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create engaging futures and light the path for the next generation. </p>\n<p>Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\" css=\".vc_custom_1605859665759{margin-top: px !important;}\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-20 18:09:12', '2020-11-20 08:09:12', '', 18, 'http://localhost:8888/wordpress/2020/11/20/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(667, 1, '2020-11-20 18:13:30', '2020-11-20 08:13:30', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605859785929-ee35c4c1a129fef5c546555ccda4eab1-9\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605859786827-46cac4539c4abbefb6a4b77031f95e66-4\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\" css=\".vc_custom_1605859869207{margin-top: px !important;}\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-20 18:13:30', '2020-11-20 08:13:30', '', 18, 'http://localhost:8888/wordpress/2020/11/20/18-revision-v1/', 0, 'revision', '', 0),
(668, 1, '2020-11-20 18:14:28', '2020-11-20 08:14:28', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605860048175-688354ed8d22b3360b4e77d60214ce7d-10\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605860049040-f5e11c1a52874460a92c9dae6403e30b-8\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\" css=\".vc_custom_1605859869207{margin-top: px !important;}\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-20 18:14:28', '2020-11-20 08:14:28', '', 18, 'http://localhost:8888/wordpress/2020/11/20/18-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(669, 1, '2020-11-20 18:20:13', '2020-11-20 08:20:13', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\" height_on_mob_landscape=\"0\" height_on_mob=\"0\"][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Pre-Sale Questions\" font_container=\"tag:h4|text_align:center|color:%23f0f0f0\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Prospective functionalities for interactive commun generate economically sound infrastructures before process.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-20 18:20:13', '2020-11-20 08:20:13', '', 24, 'http://localhost:8888/wordpress/2020/11/20/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(670, 1, '2020-11-20 18:21:10', '2020-11-20 08:21:10', '[vc_row][vc_column][ultimate_spacer height=\"20\" height_on_mob_landscape=\"0\" height_on_mob=\"0\"][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605860464738{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#000000\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Prospective functionalities for interactive commun generate economically sound infrastructures before process.\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-20 18:21:10', '2020-11-20 08:21:10', '', 24, 'http://localhost:8888/wordpress/2020/11/20/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(671, 1, '2020-11-20 18:28:12', '2020-11-20 08:28:12', '[vc_row][vc_column][ultimate_spacer height=\"20\" height_on_mob_landscape=\"0\" height_on_mob=\"0\"][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605860464738{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#000000\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-20 18:28:12', '2020-11-20 08:28:12', '', 24, 'http://localhost:8888/wordpress/2020/11/20/24-revision-v1/', 0, 'revision', '', 0),
(672, 1, '2020-11-20 18:31:57', '2020-11-20 08:31:57', '[vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"WE ARE MAPLE\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\">Assertively impact bricks-and-clicks outsourcing after mission-critical ROI. Monotonectally underwhelm cost effective convergence without granular alignments. Progressively create client-based platforms.</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605861022512-b1612a18-8e24-7\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-20 18:31:57', '2020-11-20 08:31:57', '', 101, 'http://localhost:8888/wordpress/2020/11/20/101-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(673, 1, '2020-11-20 18:33:57', '2020-11-20 08:33:57', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures are qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605861188907-26c58367b1817ac85bdfbd9471559ce5-7\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1605861189863-3e99790e19d29b017155e61871dc6de5-2\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\" css=\".vc_custom_1605859869207{margin-top: px !important;}\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-20 18:33:57', '2020-11-20 08:33:57', '', 18, 'http://localhost:8888/wordpress/2020/11/20/18-revision-v1/', 0, 'revision', '', 0),
(674, 1, '2020-11-20 20:21:03', '2020-11-20 10:21:03', '[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]LET’S CREATE SOMETHING TOGETHER![/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]\r\n<blockquote>Through our Clients, 2050 commences today.</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 20:21:03', '2020-11-20 10:21:03', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(675, 1, '2020-11-20 20:34:08', '2020-11-20 10:34:08', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]</p>\n<h1>CREATE ENGAGING FUTURES</h1>\n<p>[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 20:34:08', '2020-11-20 10:34:08', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(676, 1, '2020-11-20 20:37:24', '2020-11-20 10:37:24', '<p>[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][vc_empty_space][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]</p>\n<h1>CREATE ENGAGING FUTURES</h1>\n<p>[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 20:37:24', '2020-11-20 10:37:24', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(677, 1, '2020-11-20 20:40:28', '2020-11-20 10:40:28', '<p>[vc_row bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][vc_empty_space][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]</p>\r\n<h1>CREATE ENGAGING FUTURES</h1>\r\n<p>[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\r\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 20:40:28', '2020-11-20 10:40:28', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(678, 1, '2020-11-20 20:41:16', '2020-11-20 10:41:16', '<p>[vc_row gap=\"10\" bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][vc_empty_space][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]</p>\r\n<h1>CREATE ENGAGING FUTURES</h1>\r\n<p>[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\r\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 20:41:16', '2020-11-20 10:41:16', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(679, 1, '2020-11-20 20:41:52', '2020-11-20 10:41:52', '<p>[vc_row gap=\"20\" bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][vc_empty_space][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\"]</p>\r\n<h1>CREATE ENGAGING FUTURES</h1>\r\n<p>[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\r\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\r\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 20:41:52', '2020-11-20 10:41:52', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(680, 1, '2020-11-20 20:44:44', '2020-11-20 10:44:44', '<p>[vc_row gap=\"20\" bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][vc_empty_space][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]</p>\n<h1>CREATE ENGAGING FUTURES</h1>\n<p>[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 20:44:44', '2020-11-20 10:44:44', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(681, 1, '2020-11-20 20:50:01', '2020-11-20 10:50:01', '<p>[vc_row gap=\"20\" bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][vc_empty_space][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]<font colour=#ffffff\"></p>\n<h1>CREATE ENGAGING FUTURES</h1>\n<p>[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 20:50:01', '2020-11-20 10:50:01', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(682, 1, '2020-11-20 20:50:49', '2020-11-20 10:50:49', '<p>[vc_row gap=\"20\" bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][vc_empty_space][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]</p>\n<h1>CREATE ENGAGING FUTURES</h1>\n<p>[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]</p>\n<blockquote><p>Through our Clients, 2050 commences today.</p></blockquote>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]</p>\n', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-20 20:50:49', '2020-11-20 10:50:49', '', 29, 'http://localhost:8888/wordpress/2020/11/20/29-revision-v1/', 0, 'revision', '', 0),
(683, 1, '2020-11-20 22:50:35', '2020-11-20 12:50:35', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\" height_on_mob_landscape=\"0\" height_on_mob=\"0\"][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row video_bg=\"yes\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605876629345{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#000000\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-20 22:50:35', '2020-11-20 12:50:35', '', 24, 'http://localhost:8888/wordpress/2020/11/20/24-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(684, 1, '2020-11-20 23:31:41', '2020-11-20 13:31:41', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\" height_on_mob_landscape=\"0\" height_on_mob=\"0\"][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.<br />\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3></h3>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span></p>\n<p><span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]</p>\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]</p>\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\n<p>On this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.</p>\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\n<p>The Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a></p>\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]</p>\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]</p>\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\n<p>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]</p>\n<h5 class=\"font_5\">Contact details</h5>\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\n<ul class=\"font_7\">\n<li>\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\n</li>\n<li>\n<p class=\"font_7\">Telephone (+61)408887751</p>\n</li>\n</ul>\n<p>Thank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]</p>\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\n<p>[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row video_bg=\"yes\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605876629345{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#000000\"][vc_column width=\"1/4\"][/vc_column][vc_column video_bg=\"yes\" width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-20 23:31:41', '2020-11-20 13:31:41', '', 24, 'http://localhost:8888/wordpress/2020/11/20/24-revision-v1/', 0, 'revision', '', 0),
(685, 1, '2020-11-21 19:45:46', '2020-11-21 09:45:46', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"YOU ARE NOW ON THE JOURNEY OF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CREATING ENGAGING FUTURES\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">You won\'t have the future you want by engaging in a linear projected reality that extends from the problems and inaction of the past.</p>\n<p>You create preferred futures by engaging your mind with desired images, texts and plans, that build your own hopes into dreams - futures that are many times better than the ones you imagine now.</p>\n<p>You create engaging futures that solve today\'s problems by replacing them with a massively better proposition that carries you and everyone forward. With engaging futures, your journey to the preferred future has energy for inclusivity, tolerance and openness - because it is exponentially more valuable and rewarding than the effort it takes to create. Engaging futures are effortless, favourable and truly interesting futures that return greater and greater gifts.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605950220086-6045cdfaff9793692eb268bf7c49b828-10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-21 19:45:46', '2020-11-21 09:45:46', '', 101, 'http://localhost:8888/wordpress/2020/11/21/101-revision-v1/', 0, 'revision', '', 0),
(686, 1, '2020-11-21 19:51:19', '2020-11-21 09:51:19', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"YOU ARE NOW ON THE JOURNEY OF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CREATING ENGAGING FUTURES\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\">You won\'t have the future you want by engaging in a linear projected reality that extends from the problems and inaction of the past.</p>\n<p>You create preferred futures by engaging with your mind in desired images, texts and plans, that build your own hopes into dreams - futures that are many times better than the ones you imagine now.</p>\n<p>You create engaging futures that solve today\'s problems by replacing them with a massively better proposition that carries you and everyone forward.</p>\n<p>With engaging futures in mind, your journey to the preferred future has energy for inclusivity, tolerance and openness - because engaging futures are exponentially more valuable and rewarding than the effort they take to create.</p>\n<p>Engaging futures are effortless, favourable and truly interesting futures that return greater and greater gifts. As we embark on a journey of engaging futures, we are actually on a journey of futures discovery. As we learn, we discover benefits and that there is more to learn - each discovery leans toward new gifts.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605950220086-6045cdfaff9793692eb268bf7c49b828-10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-21 19:51:19', '2020-11-21 09:51:19', '', 101, 'http://localhost:8888/wordpress/2020/11/21/101-revision-v1/', 0, 'revision', '', 0),
(687, 1, '2020-11-21 20:58:22', '2020-11-21 10:58:22', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"YOU ARE NOW ON THE JOURNEY OF\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CREATING ENGAGING FUTURES\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: left;\"><strong>Engaging futures offer a journey of hope, discovery and exponentially better reality.</strong></p>\n<p style=\"text-align: left;\">You won\'t have the future you want by engaging in a linear projected reality that extends from the problems and inaction of the past.</p>\n<p style=\"text-align: left;\">You create preferred futures by engaging with your mind in desired images, texts and plans, that build your own hopes into dreams - futures that are many times better than the ones you imagine now.</p>\n<p style=\"text-align: left;\">You create engaging futures that solve today\'s problems by replacing them with a massively better proposition that carries you forward on a journey of hope.</p>\n<p style=\"text-align: left;\">With engaging futures in mind, your journey has energy for inclusivity, tolerance and openness - because your futures are exponentially more valuable and rewarding than the effort they take to create.</p>\n<p style=\"text-align: left;\">Engaging futures are effortless, favourable and truly interesting futures that return greater and greater gifts. As we embark on a journey of engaging futures, we are actually on a journey of futures discovery. We learn, and discover benefits with each new action achieved. Each gift refreshes our hopes in our vision and expands our preferred future possibilities, creating fullfillment, purpose and self-evolutionary visioning.</p>\n<p style=\"text-align: left;\">Futures thinking creates an expansive and improving universe that continues the promise to this and to future generations of sustainable improvement. This journey suggests that humanity has already stepped through societies of hunter-gatherer, farming, the industrial and information societies - so that we are now experiencing digital transformation via premium technology consumption and smart cities coordinated use of the IoTs data and sensors. Similarly, your own futures will transform with specialised attention given to their planning. Creation of engaging futures that bring together the benefits of past learning and current systems, will combine to create engaging futures once more, guided by the coming human-centred society 2020-2030.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1605952401506-d96b327615659c1983b813d17bd8288e-5\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-21 20:58:22', '2020-11-21 10:58:22', '', 101, 'http://localhost:8888/wordpress/2020/11/21/101-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(688, 1, '2020-11-21 21:12:51', '2020-11-21 11:12:51', '[vc_row][vc_column][ultimate_spacer height=\"20\" height_on_mob_landscape=\"0\" height_on_mob=\"0\"][rev_slider slidertitle=\"Exploration Header\" alias=\"exploration-header\"][vc_empty_space height=\"120px\"][vc_custom_heading text=\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Learn tools and methods to explore, create and manage alternative futures.\r\nThis Course will be presented February 2021, live at the Gold Coast, Australia and at half price for online for international registrants. All workshops include live and online plenary breakout sessions.\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Credentialled Experienced Course Presenters\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605196884492{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228554238{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;background-color: #a8a8a8 !important;}\"][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Professor Sohail Inayatullah</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #ffffff;\">UNESCO CHAIR OF FUTURES STUDIES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Professor Sohail Inayatullah is a world-leading futurist and political scientist.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah is the inaugural UNESCO Chair of Futures Studies; winner of the Laurel Award 2010 for all-time best futurist; professor at the Graduate Institute of Futures Studies, Tamkang University, Taiwan; adjunct professor in the Faculty of Arts and Business, the University of the Sunshine Coast; and associate with Melbourne Business School - Mt Eliza Executive Education, University of Melbourne.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has authored and edited 32 books and over 300 journal articles, book chapters, and reviews.</span>\r\n\r\n<span style=\"color: #ffffff;\">Professor Inayatullah has worked with organisations and governments locally and globally on internal transformation to create their own alternative and desired futures.</span>[/vc_column_text][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][vc_empty_space height=\"20px\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253185562{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.57.png?id=241) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197129381{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"full\" parallax_content=\"parallax_content_value\" seperator_enable=\"seperator_enable_value\" animation_type=\"h\" horizontal_animation=\"left-animation\" vertical_animation=\"top-animation\" disable_on_mobile=\"disable_on_mobile_value\" el_class=\"team-boxes-style\"][vc_column width=\"1/4\" css=\".vc_custom_1605197068247{padding-top: 110px !important;padding-bottom: 110px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605253200870{padding-top: 110px !important;padding-bottom: 110px !important;background-image: url(http://localhost:8888/wordpress/wp-content/uploads/2020/11/Screen-Shot-2020-11-13-at-01.31.46.png?id=242) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605228566620{padding-top: 110px !important;padding-bottom: 110px !important;background-color: #000000 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_column_text el_class=\"make-p-small\"]\r\n<h3 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Dr. Colin Russo</span></h3>\r\n<h6 style=\"text-align: left;\"><span style=\"color: #999999;\">MANAGING DIRECTOR, ENGAGING FUTURES</span></h6>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text el_class=\"make-p-small\"]<span style=\"color: #ffffff;\">Dr. Colin has three decades of experience engaging stakeholders and clients of national, state and local governments. An award-winning futurist author, Colin writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate-change. Colin has facilitated futures workshops for City of Gold Coast\'s Our Bold Future 2037, and presented Futures Thinking Courses with Professor Inayatullah in 2017, 2018 and 2019. Dr. Russo also presented Futures Courses for the AFP, Brisbane Primary Health, National Disability Services (across Queensland), Uniting Care Queensland, Redland City Council, Bulloo Shire Council and the Queensland Government 2019 Leadership Series. He presented on water futures in Melbourne and futures of cities in Taiwan and USA.</span>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1605197029939{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"120px\"][vc_custom_heading text=\"Aims Of The Course\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"The Course is intended to enhance your capacity to create alternative and preferred futures. Presenters will use case studies from foresight projects in government, corporate, and community sectors. Tools and methods from the discipline of Futures Studies will help you:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1480792812297{padding-top: 40px !important;padding-bottom: 60px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-shield-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Map the future.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-ship2\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Understand disruptions and trends.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"linearicons-crown\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Discuss and analyse which futures are more likely to result.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1462898611266{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.5\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-book\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Deepen the future through the use of narratives.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.7\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-image photo picture-o\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Create scenarios to optimize goals, prepare for contingency, and imagine other worlds\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"0.5\" animation_delay=\"0.9\" animation_iteration_count=\"1\" opacity_start_effect=\"80\"][bsf-info-box icon=\"Defaults-user-plus\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"circle\" icon_color_bg=\"#333333\" title=\"Transform self, the organisation, and strategy through visioning and backcasting.\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#ededed\" box_bg_color=\"#ffffff\" title_font=\"font_family:Lato|font_call:Lato|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:19px;\" desc_font_size=\"desktop:16px;\" desc_font_line_height=\"desktop:24px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^9434|url^http://treekode.com/maple/wp-content/uploads/2016/10/negativespace-23.jpg|caption^null|alt^null|title^negativespace-23|description^null\" bg_override=\"ex-full\"][vc_column][vc_custom_heading text=\"Critical Questions\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Specifically, the Course will explore critical questions, such as:\" font_container=\"tag:p|font_size:22px|text_align:center|color:%239c9c9c\" use_theme_fonts=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][ultimate_spacer height=\"120\" height_on_mob_landscape=\"40\" height_on_mob=\"40\"][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"#ffffff\" icon=\"Defaults-user\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the implications of the novel coronavirus (COVID-19) - globally and locally?\" block_title_back=\"Is Corona 4.0 likely?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-pagelines\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What aspects of climate change will impact our futures the most?\" block_title_back=\"What does a carbon neutral 2050 mean for your organisation?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-graduation-cap mortar-board\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of education?\" block_title_back=\"Are short courses best as change accelerates?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\" title_font_line_height=\"desktop:12px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-group users\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Conflict resolution futures - what to do when there are contrasting visions of the future in an organization?\" block_title_back=\"How do we change our selves to better align with the future we envision?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"\" icon=\"Defaults-video-camera\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"What are the futures of policing and security?\" block_title_back=\"Are facial recognition cameras helpful or disruptive?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bank institution university\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Are smart cities key to solving climate change issues?\" block_title_back=\"Will smart cities create equal opportunity and inclusivity?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-subway\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"How different will public and private transport be, by 2030?\" block_title_back=\"Will electric vehicles be subsidised and required by law by 2050?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][vc_column_inner width=\"1/4\"][icon_counter border_size=\"1\" border_color=\"rgba(255,255,255,0.5)\" icon=\"Defaults-bolt flash\" icon_size=\"38\" icon_color=\"#101010\" text_color=\"\" bg_color=\"#ffffff\" block_title_front=\"Will fossil fuels be phased out by 2030?\" block_title_back=\"How soon will a renewables pathway be a viable alternative?\" cont_align=\"on\" title_font=\"font_family:Montserrat|font_call:Montserrat|variant:700\" title_font_style=\"font-weight:700;\" desc_font=\"font_family:Open Sans|font_call:Open+Sans\" desc_font_style=\"font-weight:500;\" title_font_size=\"desktop:13px;\" desc_font_size=\"desktop:14px;\" desc_font_line_height=\"desktop:20px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"FAQs\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][vc_tta_accordion active_section=\"1\"][vc_tta_section title=\"Course resources\" tab_id=\"1462039446254-a71612d9-2b19\"][vc_row_inner][vc_column_inner][vc_column_text]Reading material will be provided prior to the Course. Participants will receive 4-5 articles written by Professor Sohail Inayatullah, and Dr. Colin Russo. For example, Dr. Russo encourages you to read <a href=\"https://drive.google.com/file/d/1XuOoz35o1Uy3dKkd1_nkxzVFUtfG5gH8/view?usp=sharing\">Creating Preferred Futures Of Australian Healthcare.</a> This article includes emerging issues gained from workshopping Australian healthcare futures to 2030, with medical health practitioners. The workshop and article applied the futures method, The Futures Triangle.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Course locations\" tab_id=\"1462039446331-e7bbf359-6158\"][vc_column_text]This Course is offered in a hotel venue in Surfers Paradise, on the Gold Coast, and online.[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Registration\" tab_id=\"1463610695891-082b0cba-747b\"][vc_column_text]\r\n<p class=\"font_8\">This Course is offered by Professor Inayatullah, and Dr. Russo, in February, 2021.</p>\r\nOn this website is a registration form for scheduling seats and asking questions, and a separate Paypal payment system. Paypal allows you to use a corporate or personal credit card to make payment of Course fees.\r\n<p class=\"font_8\">The Course cost for your in-person attendance, is $1100 per person.  Up to 30 participants can attend Futures Thinking and Strategy Transformation 2030 in-person.</p>\r\nThe Course uses the powr.io link to Paypal system - powr.io is the means of linking the Paypal options. This system has been used by Engaging Futures in helping participants to make Course fee payments, since 2017.  If you require verification of this link, please ask Dr. Russo to email it to your business email address. <a href=\"https://www.powr.io/checkout_screen?app_id=12252613\">www.powr.io/checkout_screen?app_id=12252613</a>\r\n<p class=\"font_8\">The Online only participation fee is $600. All online sessions include plenary breakout rooms, facilitated by Course presenters.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Course Flyer\" tab_id=\"1605231285324-4922f16e-8c1d\"][vc_column_text]\r\n<p class=\"font_8\">The Futures Thinking and Strategy Transformation 2030 And Beyond Course brochure is now available upon request. Email a course administrator via the single email address colinrusso@engagingfutures.com</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Who should attend this advanced three-day Course?\" tab_id=\"1605231412055-c4b2f296-22e3\"][vc_column_text]\r\n<p class=\"font_8\">Strategy leaders of government, councillors, corporate and industry leaders and officers, consultants and community sector strategists and practitioners, students and other individuals are all encouraged to attend.</p>\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"CONTACT DETAILS\" tab_id=\"1605231867516-b98de893-9798\"][vc_column_text]\r\n<h5 class=\"font_5\">Contact details</h5>\r\n<p class=\"font_7\">If you have any questions about the Course or about the registration systems, please contact Dr. Colin Russo, Managing Director, Engaging Futures.</p>\r\n\r\n<ul class=\"font_7\">\r\n 	<li>\r\n<p class=\"font_7\">Email <a href=\"mailto:colinrusso@engagingfutures.com\" target=\"_self\" rel=\"noopener noreferrer\" data-content=\"colinrusso@engagingfutures.com\" data-type=\"mail\">colinrusso@engagingfutures.com</a></p>\r\n</li>\r\n 	<li>\r\n<p class=\"font_7\">Telephone (+61)408887751</p>\r\n</li>\r\n</ul>\r\nThank you![/vc_column_text][/vc_tta_section][vc_tta_section title=\"PARTICIPANT ALUMNI\" tab_id=\"1605240589499-adf4c541-92d8\"][vc_column_text]\r\n<h5 class=\"font_5\">Since 2017, our alumni has been growing on Facebook and LinkedIn. We connect you on day 1 of the Course, for your own networking purposes. We include a selection of photos from the event and include all slides presented, together with chat facilities and other resources.</h5>\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" css=\".vc_custom_1476033850417{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 80px !important;padding-bottom: 80px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #FFFFFF));background: -moz-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -webkit-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -o-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: -ms-linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);background: linear-gradient(top,#F0F0F0 0%,#FFFFFF 100%);\"][vc_column css=\".vc_custom_1605249862210{background-color: #ffffff !important;}\"][vc_custom_heading text=\"OUR TESTIMONIALS\" font_container=\"tag:h2|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"Read what our alumni are saying about their experiences on our Futures Thinking Course!\" font_container=\"tag:p|font_size:19px|text_align:center|color:%23afafaf\" use_theme_fonts=\"yes\"][vc_empty_space height=\"40px\"][ult_ihover thumb_height_width=\"300\" gutter_width=\"40\"][ult_ihover_item title=\"Brook Kitson\" thumb_img=\"id^291|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Brook-Kitson.jpeg|caption^null|alt^null|title^Brook Kitson|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"I really got a lot out of the course (new ways of thinking and tools to get a desired outcome) and appreciated our discussions\"[/ult_ihover_item][ult_ihover_item title=\"Amanda Hirschausen\" thumb_img=\"id^268|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Amanda-Hirschausen.jpeg|caption^null|alt^null|title^Amanda Hirschausen|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"The practical tips about engaging business leaders, in the Futures Thinking and Strategy Transformation course truly expands the mind.  Sohail and Colin share their wealth of experience in thinking about and designing our preferred future.  It\'s fabulous!\".[/ult_ihover_item][ult_ihover_item title=\"Michael Cooke\" thumb_img=\"id^269|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Michael-Cooke.jpeg|caption^null|alt^null|title^Michael Cooke|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"Brilliant Course - I really enjoyed the team spirit and had a great time meeting other leaders and discussing how to create a better world - thanks!\".[/ult_ihover_item][ult_ihover_item title=\"Edwina Marks\" thumb_img=\"id^270|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Edwina-Marks-1.jpeg|caption^null|alt^null|title^Edwina Marks|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"My team and I found the three days a rewarding experience. We have walked away feeling excited about the future, rather than puzzled and anxious\".[/ult_ihover_item][ult_ihover_item title=\"Mervin Chiang\" thumb_img=\"id^271|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/Mervin-Chiang.jpeg|caption^null|alt^null|title^Mervin Chiang|description^null\" hover_effect=\"effect19\" desc_font_color=\"#ffffff\" block_border_color=\"rgba(255,255,255,0.2)\" block_border_size=\"10\" spacer_width=\"100\" spacer_border_width=\"1\" title_font_size=\"22\" title_font_line_height=\"28\" desc_font_size=\"12\" desc_font_line_height=\"18\" title_responsive_font_size=\"desktop:22px;\" title_responsive_line_height=\"desktop:28px;\" desc_responsive_font_size=\"desktop:12px;\" desc_responsive_line_height=\"desktop:18px;\"]\"This is the best training I\'ve had in my entire professional career! Thank you for the fantastic insights and discussions\".[/ult_ihover_item][/ult_ihover][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row video_bg=\"yes\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605957126547{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#000000\"][vc_column width=\"1/4\"][/vc_column][vc_column video_bg=\"yes\" width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]', 'Three Day Futures Course', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2020-11-21 21:12:51', '2020-11-21 11:12:51', '', 24, 'http://localhost:8888/wordpress/2020/11/21/24-revision-v1/', 0, 'revision', '', 0),
(689, 1, '2020-11-22 11:21:43', '2020-11-22 01:21:43', '[vc_row gap=\"20\" bg_type=\"bg_color\" bg_color_value=\"#ffffff\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^388|url^http://localhost:8888/wordpress/wp-content/uploads/2020/11/jamie-mcglinchey-q19ZRZE4tGI-unsplash-scaled.jpg|caption^null|alt^null|title^jamie-mcglinchey-q19ZRZE4tGI-unsplash|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.4)\" css=\".vc_custom_1605867658794{margin-bottom: 40px !important;padding-bottom: 40px !important;}\"][vc_column][vc_empty_space][ultimate_spacer height=\"180\" height_on_tabs_portrait=\"140\" height_on_mob_landscape=\"120\" height_on_mob=\"110\"][ultimate_heading main_heading=\"GET IN TOUCH\" main_heading_color=\"rgba(255,255,255,0.61)\" sub_heading_color=\"#ffffff\" alignment=\"left\" sub_heading_font_family=\"font_family:Hind|font_call:Hind|variant:600\" sub_heading_style=\"font-weight:600;\" sub_heading_font_size=\"desktop:34px;mobile:22px;\" main_heading_font_family=\"font_family:Hind|font_call:Hind|variant:500\" main_heading_style=\"font-weight:500;\" main_heading_font_size=\"desktop:22px;mobile:21px;\" sub_heading_line_height=\"desktop:36px;mobile:26px;\" main_heading_margin=\"margin-bottom:20px;\" main_heading_line_height=\"mobile:21px;\" margin_design_tab_text=\"\"]\r\n<h1>CREATE ENGAGING FUTURES</h1>\r\n[/ultimate_heading][ultimate_spacer height=\"130\" height_on_tabs_portrait=\"80\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"linearicons-map-marker\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" title_font_line_height=\"desktop:12px;\" desc_font_size=\"desktop:13px;\" desc_font_color=\"#ffffff\"]Brisbane | Sydney | Melbourne | Global[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"10\" height_on_mob=\"10\"][bsf-info-box icon=\"linearicons-at-sign\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"]colinrusso@engagingfutures.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_spacer height=\"\" height_on_mob_landscape=\"20\" height_on_mob=\"20\"][bsf-info-box icon=\"linearicons-phone-bubble\" icon_size=\"44\" icon_color=\"#ffffff\" pos=\"left\" title_font=\"font_family:Raleway|font_call:Raleway\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" desc_font_style=\"font-weight:600;\" title_font_size=\"desktop:16px;\" desc_font_size=\"desktop:13px;tablet_portrait:17px;\" desc_font_color=\"#ffffff\"](+61) 408 887 751[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space][/vc_column][/vc_row][vc_row css=\".vc_custom_1481553315382{margin-top: 120px !important;margin-bottom: 120px !important;}\"][vc_column width=\"2/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\" opacity=\"off\"][vc_custom_heading text=\"GET IN TOUCH WITH US\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][contact-form-7 id=\"430\"][ultimate_spacer height=\"0\" height_on_mob_landscape=\"60\" height_on_mob=\"60\"][/ult_animation_block][/vc_column][vc_column width=\"1/3\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_custom_heading text=\"CREATE YOUR MOST ENGAGING FUTURES HERE\" font_container=\"tag:h6|font_size:12px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][/ult_animation_block][vc_column_text]\r\n<blockquote>Through our Clients, 2050 commences today.</blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Carousel Gallery\" alias=\"carousel-gallery\"][/vc_column][/vc_row]', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2020-11-22 11:21:43', '2020-11-22 01:21:43', '', 29, 'http://localhost:8888/wordpress/2020/11/22/29-revision-v1/', 0, 'revision', '', 0),
(690, 1, '2020-11-22 16:16:13', '2020-11-22 06:16:13', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider slidertitle=\"Club Flyer\" alias=\"club-flyer\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1481576227367{margin-top: 120px !important;margin-bottom: 60px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"YOUVE EMBARKED ON THE JOURNEY TO \" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CREATE ENGAGING FUTURES\" font_container=\"tag:h2|font_size:50px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]</p>\n<p style=\"text-align: left;\"><strong>The creation of engaging futures has an aim. This is a journey of hope, discovery and of an exponentially better reality.</strong></p>\n<p style=\"text-align: left;\">You won\'t have the future you want by engaging in a linear projected reality that extends from the problems and inaction of the past.</p>\n<p style=\"text-align: left;\">You create preferred futures by engaging with your mind in desired images, texts and plans, that build your own hopes into dreams - futures that are many times better than the ones you imagine now.</p>\n<p style=\"text-align: left;\">You create engaging futures that solve today\'s problems by replacing them with a massively better proposition that carries you forward on a journey of hope.</p>\n<p style=\"text-align: left;\">With engaging futures in mind, your journey has energy for inclusivity, tolerance and openness - because your futures are exponentially more valuable and rewarding than the effort they take to create.</p>\n<p style=\"text-align: left;\">Engaging futures are effortless, favourable and truly interesting futures that return greater and greater gifts. As we embark on a journey of engaging futures, we are actually on a journey of futures discovery. We learn, and discover benefits with each new action achieved. Each gift refreshes our hopes in our vision and expands our preferred future possibilities, creating fulfilment, purpose and self-evolutionary visioning.</p>\n<p style=\"text-align: left;\">Futures thinking creates an expansive and improving universe that continues the promise to this and to future generations of sustainable improvement.</p>\n<p style=\"text-align: left;\">This journey suggests that humanity has periled for centuries to create societies of hunter-gatherer, farming, the industrial and information societies. We are lucky to now be experiencing the greatest globalised society in history: digital society, connected by person to person links and premium technology consumption plus smart cities\' coordinated use of the IoTs and its objects.</p>\n<p style=\"text-align: left;\">The promise to future generations is that your own futures will transform, guided by the advances that already exist and the emerging human-centred society of 2020-2030. Your own transformed futures, will be a gift to future generations.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_masonry_grid post_type=\"post\" max_items=\"10\" style=\"load-more\" items_per_page=\"7\" element_width=\"6\" grid_id=\"vc_gid:1606025202200-405296225210e8f9fc9879d7f9b53102-10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Publications', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2020-11-22 16:16:13', '2020-11-22 06:16:13', '', 101, 'http://localhost:8888/wordpress/2020/11/22/101-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(691, 1, '2020-11-22 17:22:33', '2020-11-22 07:22:33', '<p>[vc_row][vc_column][ultimate_spacer height=\"20\"][rev_slider slidertitle=\"Home v4\" alias=\"homev4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1605611627850{padding-top: 120px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][vc_custom_heading text=\"WE ARE ENGAGING FUTURES\" font_container=\"tag:h6|text_align:left\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|font_size:50px|text_align:left\" use_theme_fonts=\"yes\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Engaging Futures is a local, national and international centre of learning, teaching and researching. We are a consulting firm based in Australia.</p>\n<p>We facilitate aspirational visions for people who hope to create a better world. We help people to explore essential and sustainable futures and to discover changes occurring in all systems. Dr. Russo, our Managing Director works with 10 domains constantly in flux and change: Social, economic, legislative, environmental, consumption, transport, futures, governance, polity and technology.</p>\n<p>It is the transformational stories of ourselves and others that integrate - sometimes through negotiation and optimisation - to generate our possible and preferred futures. We create the preferred and alternative futures scenarios that offer innovation from which sustainability becomes more possible.</p>\n<p>We bring many futures tools and methods to facilitate enquiry into what works and what should remain the same and what could be many generations better.</p>\n<p>Our pathway over the past ten years was influenced by great people, institutions and alternative ideas and actions. Engaging Futures has been inspired by working alongside leaders of organisations such as the United Nations, Australian and overseas universities, national, State and local governments, industry, commerce and community organisations.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][info_circle edge_radius=\"180\" start_degree=\"90\" eg_padding=\"60\" icon_size=\"18\" img_icon_size=\"18\" icon_show=\"not-show\" content_bg=\"#101010\" content_color=\"#ffffff\" eg_br_style=\"solid\" eg_br_width=\"2\" eg_border_color=\"#dddddd\" auto_slide=\"on\" auto_slide_duration=\"5\" highlight_style=\"info-circle-pulse\" icon_launch=\"easeOutBounce\" icon_launch_duration=\"1\" icon_launch_delay=\"0.2\" responsive_breakpoint=\"800\"][info_circle_item info_title=\"Futures Methods and Tools\" info_icon=\"Defaults-home\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Qualified in applying futures methods to issues, especially governance and strategic planning.[/info_circle_item][info_circle_item info_title=\"Delivered with flair\" info_icon=\"Defaults-user\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]All of our presentations and courses have excited and inspired our audiences[/info_circle_item][info_circle_item info_title=\"100% Ready\" info_icon=\"Defaults-cogs gears\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are 100% Ready to consult you and to help you transform, from A to Z[/info_circle_item][info_circle_item info_title=\"Award Winning\" info_icon=\"Defaults-group users\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]We are award-winning futures journal article authors and government projects award winners.[/info_circle_item][info_circle_item info_title=\"New Technology\" info_icon=\"Defaults-flask\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]Fantastic technological innovations can help but can also accelerate change.[/info_circle_item][info_circle_item info_title=\"New Solutions\" info_icon=\"Defaults-umbrella\" icon_bg_color=\"#101010\" icon_color=\"#ffffff\"]How much better could your futures be with better strategies?[/info_circle_item][/info_circle][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"bg_color\" css=\".vc_custom_1605611246475{margin-top: 120px !important;margin-bottom: 60px !important;background-color: #f0f0f0 !important;}\" bg_color_value=\"#f0f0f0\"][vc_column css=\".vc_custom_1605611132162{background-color: #f0f0f0 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"60px\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Vision\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"EQUALITY OF OPPORTUNITY, SUSTAINABILITY, JOBS WE LOVE? YES, HOW DO WE GET THERE? THAT\'S WHAT WE DO.</p>\n<p>``A city is not something you build to leave standing like the Pyramids, the Pantheon or one of the eleven Palaces of London. A city is something you build every day, with values of tolerance, diversity and inclusion, for people, prosperity and the planet``.\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]What are engaging futures? Engaging futures are an imagined planned narrative inclusive of interesting progressions more than just a repeat of the decades before. Engaging futures manage to evade expectations while still fitting within the framework of the preferred future.</p>\n<p>A strong vision is a must, and strong doesn\'t have to mean short and repetitive, but it has to speak to the desired end well and be memorable within the future\'s context. Following that is robust connective scenarios and logical sequence since an engaging narrative has energy and power and feels futuristic.</p>\n<p>Vision is crucial, and while it has to fit the preferred future, it should excite the audience (city/community/nation) getting them engaging with the possibilities. Substantial systemic variability is good, but with issues like sustainability, the creation of futures has opened up smart cities and technology plus other levers of positive change to solve problems and create efficiencies. We must become less reliant on preset notions of quality and must continue the discussion as a journey, rather than as a preset future.</p>\n<p>Futures for one audience should not crowd futures of another audience. The challenges should be met and clearly resolved, while the discoveries should be brilliant but not exclusive.</p>\n<p>Futures bring a suite or assortment of both resolutions and brilliant possibilities that are fulfilling but that don\'t saturate a particular topic while neglecting other priorities. This creates interest and establishes a controlled futures production but allows flexibility and resilience giving space for consistent variation and transformation.</p>\n<p>Ultimately engaging futures should make you forget that you\'re looking for the perfect future. They should unfold to you and be immersive, offering both cerebral and temporal engagement. Sure, you can engage later and analyze every point, but at that point, you won\'t need any other justification besides the fact that it\'s a great future and fulfilling a vital need.[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Connecting People To Aspirations</h4>\n<p class=\"font_7\">Engaging Futures presents the information people need to become better futures thinkers, leaders and strategic planners.</p>\n<p class=\"font_7\">We offer the futures tools and methods that connect people with their inner purpose, dreams and aspirations and their capacities to adapt and transform to create preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Conducting Workshops Locally And Globally</h4>\n<p class=\"font_7\">Engaging Futures offers qualified experts working internationally, nationally, regionally and locally. We host forums and workshops, research and write journal articles, facilitate futures conversations, present Futures Thinking Courses and develop visions, policies and strategies.</p>\n<p class=\"font_7\">We hope to inspire you to work with us to create futures that are genuinely engaging, favourable and interesting, through brilliant ideas, breathtaking innovations, exciting knowledge, new case studies and futures methods that you can use for a lifetime.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h4>Our Approach</h4>\n<p class=\"font_7\">Engaging Futures works with the \"Six-pillars\" approach to futures studies, creating alternative and preferred futures. Methods include the futures triangle, CLA and emerging issues and trends analysis. Engaging Futures is a boutique consultancy and also uses experimental methods including the Unicity Method, The Futures Ball and games e.g. using the context of space to imagine civilisational challenges and alternative futures thinking.</p>\n<p class=\"font_7\">We aim to benefit current and future generations in the creation of sustainable, essential and preferred futures.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1606028001586-e6d60e1ef32bb6940d8e3093b364144c-2\" include=\"480,208,216\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1605611560225{margin-top: 20px !important;margin-bottom: 20px !important;}\"][vc_column][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Services\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WE CREATE PREFERRED FUTURES\" font_container=\"tag:h6|text_align:center\" use_theme_fonts=\"yes\"][vc_column_text]</p>\n<p style=\"text-align: center;\">Every thing we do to facilitate futures thinking has a written component - so we really know what we are doing! When we consult our clients about their hopes for the future, present a key note, workshop futures of particular topics like smart city futures and health futures, or when we present our three-day Futures Thinking Course, we renew as authors of possible futures. See our regular services below.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-user\" icon_size=\"30\" title=\"Leadership Consulting And Research\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]There\'s no better feeling than connecting with your client\'s vision and using our extensive futures thinking experience to help them to shape their agenda and program. After our initial consultations conclude, we mentor individual leaders to help them accelerate and remain in advance of emerging issues.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"linearicons-gift\" icon_size=\"30\" title=\"Futures Presentations And Articles\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]It\'s a gift! Presenting you with our thoughts - we should be paying you :) Honestly, we love to learn about the topics that can help our clients to transform their organisations and lives. What an honour! We hope and believe we do that well. Engaging Futures has presented to more than 40 organisations in the past few years - we must be doing something well - it\'s because we enjoy what we do.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-spinner\" icon_size=\"30\" title=\"Transformational Workshops And Reports\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Aside from smaller keynote presentations for conferences, we convene half-day workshops right through to three-day workshops, all focused on our client\'s vision. So, our client gains our full focus of attention, customised suggestions and we work with their team and help prepare their reports, for an additional fee, of course ;) Every little extra helps Engaging Futures to service you, our clients. We put days of preparation into our workshops, so, we give a little more during our client briefing session. Then, when we arrive in your seminar or meeting room, participants, executives and Engaging Futures are all smiles.[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][bsf-info-box icon=\"Defaults-group users\" icon_size=\"30\" title=\"Futures Thinking Courses And Strategies\" read_more=\"box\" pos=\"top\" title_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" title_font_style=\"font-weight:700;\" title_font_size=\"desktop:13px;\" title_font_color=\"#3f3f3f\"]Futures Thinking Courses bring diverse groups together to cross-fertilise a host of emerging issues - it\'s a great way to find out what issues other organisations are addressing and how they think the future might change for your sector. Everyone becomes more informed during Courses - even our presenters! We network you and help build an alumni of contacts for those wishing to remain a step ahead between Courses.[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_media_grid grid_id=\"vc_gid:1606028002481-bbdd083633335a90475e6d8ce3df5e82-10\" include=\"210,207,206\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1480356215449{padding-top: 100px !important;}\" bg_color_value=\"#f7f7f7\"][vc_column width=\"1/2\" el_class=\"wide-box-mobile\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner el_class=\"home-box1-mobile\" width=\"3/4\"][ultimate_heading spacer=\"line_only\" line_height=\"40\" line_width=\"1\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_custom_heading text=\"Our Structure\" font_container=\"tag:h2|font_size:44px|text_align:center\" use_theme_fonts=\"yes\"][vc_empty_space height=\"10px\"][vc_column_text]</p>\n<h5 class=\"font_5\">About Dr. Colin Russo</h5>\n<p class=\"font_7\">As Managing Director of Engaging Futures, Dr. Russo brings three decades of experience engaging stakeholders and clients of national, state and local governments.</p>\n<p class=\"font_7\">An award-winning futurist author, Dr. Russo writes using futures studies methods about topics including futures of cities, health, disabilities, security, technology and climate change.</p>\n<p class=\"font_7\">Dr. Russo has facilitated futures workshops for international, national, State, regional and local government, corporate and community sector organisations.</p>\n<h5 class=\"font_5\">The Futures Board</h5>\n<p class=\"font_5\">The ​Engaging Futures Board is where internal decisions are made about annual practices. <span class=\"wixGuard\">​</span>​</p>\n<h5 class=\"font_5\">Mentors And Friends Of Engaging Futures</h5>\n<p class=\"font_5\">Mentors and friends of Engaging Futures include the brilliant UNESCO Chair of Futures Studies, Professor Sohail Inayatullah, and the effervescent Professor Ivana Melojevic. We are also proud to discuss our preferred futures with Dr. Marcus Bussey from USC.</p>\n<h5 class=\"font_5\">Our Client Network</h5>\n<p class=\"font_5\">Our many professional clients, Course participant alumni, journal editors, and professional body executives all help to facilitate our desired futures. Thank you! and we look forward to meeting more of you!</p>\n<p class=\"font_5\">There is also a wider international group of professional Futurist affiliates whom Engaging Futures frequently interacts and shares resources with.</p>\n<h5>Quotes about structure by UNESCO Chair of Futures Studies, Professor Sohail Inayatullah</h5>\n<blockquote>\n<h6 style=\"text-align: left;\">- \"Complexity theory suggests that the future is patterned and chaotic; that is, it can be known and yet unknown, or explained but not accurately predicted. This \'both-and\' perspective is especially useful in reconciling classical dichotimies such as agency (individuals can influence the future) and structure (structures define individuals and limit what is possible)\".</h6>\n<h6 style=\"text-align: left;\">- \"While globalisation has not suddenly developed a soft heart, the agenda now includes how we know the world and how these knowings are complicit in the disasters around us. This has led to calls to move from strategy as the defining metaphor of the world system [strategy as global structure] to health, or inner and outer balance\".</h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p></blockquote>\n<p>[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"61\" img_size=\"full\" alignment=\"right\"][/vc_column][/vc_row][vc_row seperator_enable=\"seperator_enable_value\" seperator_type=\"triangle_svg_seperator\" seperator_position=\"bottom_seperator\" seperator_svg_height=\"60\" seperator_shape_background=\"#ffffff\" css=\".vc_custom_1481752768718{margin-bottom: 100px !important;padding-top: 120px !important;}\"][vc_column][/vc_column][/vc_row][vc_row bg_type=\"bg_color\" bg_override=\"ex-full\" css=\".vc_custom_1481576396754{padding-top: 80px !important;padding-bottom: 60px !important;}\" bg_color_value=\"#101010\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Create Engaging Futures (C) 2020-2050\" font_container=\"tag:p|font_size:15px|text_align:center|color:%23cecece|line_height:25px\" use_theme_fonts=\"yes\" css=\".vc_custom_1605859869207{margin-top: px !important;}\"][vc_btn title=\"CONTACT US\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#ffffff\" outline_custom_hover_text=\"#101010\" shape=\"square\" size=\"xs\" align=\"center\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fwordpress%2Fcontact-us%2F|title:Contact%20Us\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</p>\n', 'Engaging Futures Home', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2020-11-22 17:22:33', '2020-11-22 07:22:33', '', 18, 'http://localhost:8888/wordpress/2020/11/22/18-revision-v1/', 0, 'revision', '', 0);

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL,
  `handle` text NOT NULL,
  `settings` longtext,
  `hover` longtext,
  `advanced` longtext,
  `params` longtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

INSERT INTO `wp_revslider_css` (`id`, `handle`, `settings`, `hover`, `advanced`, `params`) 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\"}');
INSERT INTO `wp_revslider_css` (`id`, `handle`, `settings`, `hover`, `advanced`, `params`) VALUES
(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\":\"-\"}');
INSERT INTO `wp_revslider_css` (`id`, `handle`, `settings`, `hover`, `advanced`, `params`) VALUES
(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\":\"-\"}'),
(110, '.tp-caption.Maple-Big-Title', '', NULL, NULL, '{\"color\":\"#101010\",\"font-size\":\"44px\",\"line-height\":\"130px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Dosis\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\"}'),
(111, '.tp-caption.Maple-Small-Text', '', NULL, NULL, '{\"color\":\"#444444\",\"font-size\":\"18px\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Dosis\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"text-shadow\":\"none\"}'),
(112, '.tp-caption.Agency-SmallTitle', '', NULL, NULL, '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"22px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"lato\",\"padding\":\"0 0 0 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\",\"letter-spacing\":\"6px\",\"type\":\"text\"}'),
(113, '.tp-caption.Agency-SmallContent', '', NULL, NULL, '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"lato\",\"padding\":\"0 0 0 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\",\"0\":\"\",\"type\":\"text\"}'),
(114, '.tp-caption.Agency-SmallLink', '{\"hover\":\"true\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"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\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}', NULL, '{\"color\":\"#f87c09\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"22px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"lato\",\"padding\":\"0 0 0px 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\",\"letter-spacing\":\"2px\",\"border-bottom\":\"1px solid #f87c09 !important\",\"type\":\"text\"}'),
(115, '.tp-caption.Agency-NavButton', '{\"hover\":\"true\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}', NULL, '{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"50px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0\",\"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\":\"-\",\"type\":\"button\"}'),
(116, '.tp-caption.Agency-SmallLinkGreen', '{\"hover\":\"true\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"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\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}', NULL, '{\"color\":\"#6db19b\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"22px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"lato\",\"padding\":\"0 0 0px 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\":\"3\",\"letter-spacing\":\"2px\",\"border-bottom\":\"1px solid #6db19b !important\",\"type\":\"text\"}'),
(117, '.tp-caption.Agency-SmallLinkBlue', '{\"hover\":\"true\"}', '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"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\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}', NULL, '{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"22px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"lato\",\"padding\":\"0 0 0px 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\":\"3\",\"letter-spacing\":\"2px\",\"border-bottom\":\"1px solid #999 !important\",\"type\":\"text\"}'),
(118, '.tp-caption.Agency-LogoText', '', NULL, NULL, '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Lato\",\"padding\":\"0 0 0 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\",\"letter-spacing\":\"1px\",\"type\":\"text\"}'),
(119, '.tp-caption.Agency-ArrowTooltip', '', NULL, NULL, '{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"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\",\"type\":\"text\"}'),
(120, '.tp-caption.Agency-SmallSocial', '{\"hover\":\"true\"}', '{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}', NULL, '{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":\"0 0 0 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\",\"type\":\"text\"}');

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_css_bkp` (
  `id` int(9) NOT NULL,
  `handle` text NOT NULL,
  `settings` longtext,
  `hover` longtext,
  `advanced` longtext,
  `params` longtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

INSERT INTO `wp_revslider_css_bkp` (`id`, `handle`, `settings`, `hover`, `advanced`, `params`) 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\"}');

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_layer_animations_bkp` (
  `id` int(9) NOT NULL,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_navigations` (
  `id` int(9) NOT NULL,
  `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
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

INSERT INTO `wp_revslider_navigations` (`id`, `name`, `handle`, `type`, `css`, `markup`, `settings`) 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\"}'),
(5, 'News Header', 'news-header', 'arrows', '.post-tabs.tparrows {\n  cursor:pointer;\n  background:#000;\n  background:rgba(0,0,0,0.5);\n  min-width:70px;\n  min-height:70px;\n  position:absolute;\n  display:block;\n  z-index:100;\n  border-radius:35px;   \n}\n\n.post-tabs.tparrows:before {\n  font-family: \\\"revicons\\\";\n  font-size:20px;\n  color:#fff;\n  display:block;\n  line-height: 70px;\n  text-align: center;    \n  z-index:2;\n  position:relative;\n}\n.post-tabs.tparrows.tp-leftarrow:before {\n  content: \\\"\\\\e824\\\";\n}\n.post-tabs.tparrows.tp-rightarrow:before {\n  content: \\\"\\\\e825\\\";\n}\n\n.post-tabs .tp-title-wrap { \n  position:absolute;\n  z-index:1;\n  display:inline-block;\n  background:#000;\n  background:rgba(0,0,0,0.5);\n  min-height:70px;\n  line-height:70px;\n  top:0px;\n  margin-left:0px;\n  border-radius:35px;\n  overflow:hidden; \n  transition: opacity 0.3s;\n  -webkit-transition:opacity 0.3s;\n  -moz-transition:opacity 0.3s;\n  -webkit-transform: scale(0);\n  -moz-transform: scale(0);\n  transform: scale(0);  \n  visibility:hidden;\n  opacity:0;\n}\n\n.post-tabs.tparrows:hover .tp-title-wrap{\n  -webkit-transform: scale(1);\n  -moz-transform: scale(1);\n  transform: scale(1);\n  opacity:1;\n  visibility:visible;\n}\n        \n .post-tabs.tp-rightarrow .tp-title-wrap { \n   right:0px;\n   margin-right:0px;margin-left:0px;\n   -webkit-transform-origin:100% 50%;\n  border-radius:35px;\n  padding-right:20px;\n  padding-left:10px;\n }\n\n\n.post-tabs.tp-leftarrow .tp-title-wrap { \n   padding-left:20px;\n  padding-right:10px;\n}\n\n.post-tabs .tp-arr-titleholder {\n  letter-spacing: 3px;\n   position:relative;\n  -webkit-transition: -webkit-transform 0.3s;\n  transition: transform 0.3s;\n  transform:translatex(200px);  \n  text-transform:uppercase;\n  color:#fff;\n  font-weight:600;\n  font-size:13px;\n  line-height:70px;\n  white-space:nowrap;\n  padding:0px 20px;\n  margin-left:11px;\n  opacity:0;  \n}\n\n.post-tabs .tp-arr-imgholder {\n  width:100%;\n  height:100%;\n  position:absolute;\n  top:0px;\n  left:0px;\n  background-position:center center;\n  background-size:cover;\n    }\n .post-tabs .tp-arr-img-over {\n   width:100%;\n  height:100%;\n  position:absolute;\n  top:0px;\n  left:0px;\n   background:#000;\n   background:rgba(0,0,0,0.5);\n        }\n.post-tabs.tp-rightarrow .tp-arr-titleholder {\n   transform:translatex(-200px); \n   margin-left:0px; margin-right:11px;\n      }\n\n.post-tabs.tparrows:hover .tp-arr-titleholder {\n   transform:translatex(0px);\n   -webkit-transform:translatex(0px);\n  transition-delay: 0.1s;\n  opacity:1;\n}', '<div class=\\\"tp-title-wrap\\\">\n  	<div class=\\\"tp-arr-imgholder\\\"></div>\n    <div class=\\\"tp-arr-img-over\\\"></div>\n	<span class=\\\"tp-arr-titleholder\\\">{{title}}</span>\n </div>\n\n', '{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":{},\"presets\":{},\"version\":\"6.0.0\"}'),
(6, 'News Header', 'news-header', 'thumbs', '.post-tabs .tp-thumb {\nopacity:1\n}\n\n.post-tabs .tp-thumb-over {\n  background:#252525;\n  width:100%;\n  height:100%;\n  position:absolute;\n  top:0px;\n  left:0px;\n  z-index:1;\n  -webkit-transition:all 0.3s;\n  transition:all 0.3s;\n}\n\n.post-tabs .tp-thumb-more:before {\n  font-family: \\\"revicons\\\";\n  font-size:12px;\n  color:#aaa;\n  color:rgba(255,255,255,0.75);\n  display:block;\n  line-height: 12px;\n  text-align: left;    \n  z-index:2;\n  position:absolute;\n  top:15px;\n  right:15px;\n  z-index:2;\n}\n.post-tabs .tp-thumb-more:before {\n  content: \\\"\\\\e825\\\";\n}\n\n.post-tabs .tp-thumb-title {\n  font-family:\\\"raleway\\\";\n  letter-spacing:1px;\n  font-size:12px;\n  color:#fff;\n  display:block;\n  line-height: 15px;\n  text-align: left;    \n  z-index:2;\n  position:absolute;\n  top:0px;\n  left:0px;\n  z-index:2;\n  padding:15px 30px 15px 15px;\n  width:100%;\n  height:100%;\n  box-sizing:border-box;\n  transition:all 0.3s;\n  -webkit-transition:all 0.3s;\n  font-weight:500;\n}\n\n.post-tabs .tp-thumb.selected .tp-thumb-more:before,\n.post-tabs .tp-thumb:hover .tp-thumb-more:before {\n color:#aaa;\n\n}\n\n.post-tabs .tp-thumb.selected .tp-thumb-over,\n.post-tabs .tp-thumb:hover .tp-thumb-over {\n background:#fff;\n}\n.post-tabs .tp-thumb.selected .tp-thumb-title,\n.post-tabs .tp-thumb:hover .tp-thumb-title {\n  color:#000;\n\n}\n', '<span class=\\\"tp-thumb-over\\\"></span>\n<span class=\\\"tp-thumb-title\\\">{{title}}</span>\n<span class=\\\"tp-thumb-more\\\"></span>', '{\"dim\":{\"width\":\"200\",\"height\":\"130\"},\"placeholders\":{},\"presets\":{},\"version\":\"6.0.0\"}'),
(7, 'News Header', 'news-header', 'bullets', '.post-tabs.tp-bullets {\n}\n.post-tabs.tp-bullets:before {\n	content:\\\" \\\";\n	position:absolute;\n	width:100%;\n	height:100%;\n	background: #555555; /* old browsers */\n    background: -moz-linear-gradient(top,  #555555 0%, #222222 100%); /* ff3.6+ */\n    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555555), color-stop(100%,#222222)); /* chrome,safari4+ */\n    background: -webkit-linear-gradient(top,  #555555 0%,#222222 100%); /* chrome10+,safari5.1+ */\n    background: -o-linear-gradient(top,  #555555 0%,#222222 100%); /* opera 11.10+ */\n    background: -ms-linear-gradient(top,  #555555 0%,#222222 100%); /* ie10+ */\n    background: linear-gradient(to bottom,  #555555 0%,#222222 100%); /* w3c */\n    filter: progid:dximagetransform.microsoft.gradient( startcolorstr=\\\"#555555\\\", endcolorstr=\\\"#222222\\\",gradienttype=0 ); /* ie6-9 */\n	padding:10px 15px;\n	margin-left:-15px;margin-top:-10px;\n	box-sizing:content-box;\n   border-radius:10px;\n   box-shadow:0px 0px 2px 1px rgba(33,33,33,0.3);\n}\n.post-tabs .tp-bullet {\n	width:13px;\n	height:13px;\n	position:absolute;\n	background:#111;	\n	border-radius:50%;\n	cursor: pointer;\n	box-sizing:content-box;\n}\n.post-tabs .tp-bullet:hover,\n.post-tabs .tp-bullet.selected {\n	background: #e5e5e5; /* old browsers */\nbackground: -moz-linear-gradient(top,  #e5e5e5 0%, #999999 100%); /* ff3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e5e5), color-stop(100%,#999999)); /* chrome,safari4+ */\nbackground: -webkit-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* chrome10+,safari5.1+ */\nbackground: -o-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* opera 11.10+ */\nbackground: -ms-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* ie10+ */\nbackground: linear-gradient(to bottom,  #e5e5e5 0%,#999999 100%); /* w3c */\nfilter: progid:dximagetransform.microsoft.gradient( startcolorstr=\\\"#e5e5e5\\\", endcolorstr=\\\"#999999\\\",gradienttype=0 ); /* ie6-9 */\n  border:1px solid #555;\n  width:12px;height:12px;\n}\n.post-tabs .tp-bullet-image {\n}\n.post-tabs .tp-bullet-title {\n}\n', '', '{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":{},\"presets\":{},\"version\":\"6.0.0\"}'),
(8, 'News Header', 'news-header', 'tabs', '.news-header .tp-tab-title {\n    color:#fff;\n    font-size:17px;\n    font-weight:900;\n    text-transform:uppercase;\n    font-family:\\\"Roboto\\\";\n    margin-bottom:5px;\n    width: 350px;\n    display: block;\n    letter-spacing:1px;\n}\n\n.news-header .tp-tab-desc {\n	font-size:17px;\n    font-weight:500;\n    color:#ffcc00;\n    line-height:25px;\n	font-family:\\\"Roboto\\\";\n}\n      ', '<div class=\\\"tp-tab-title\\\">{{title}} <i style=\\\"float:right; margin-top:5px;\\\" class=\\\"fa-icon-chevron-right\\\"></i></div>\n<div class=\\\"tp-tab-desc\\\">{{param1}}</div>', '{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":{},\"presets\":{},\"version\":\"6.0.0\"}');

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_navigations_bkp` (
  `id` int(9) NOT NULL,
  `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
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` longtext NOT NULL,
  `settings` text,
  `type` varchar(191) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

INSERT INTO `wp_revslider_sliders` (`id`, `title`, `alias`, `params`, `settings`, `type`) VALUES
(1, 'Slider 1', 'slider-1', '{\"addOns\":[],\"version\":\"6.2.23\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"pageURL\":\"\",\"transient\":1200,\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":false,\"m\":false},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":900,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":900,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"0\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"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\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\"},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\"},{\"alias\":\"Content Text\",\"v\":\"#00ffff\"}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-1\\\"][\\/rev_slider]\"}', '{\"version\":\"6.2.23\"}', ''),
(2, 'Home v1', 'homev1', '{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"homev1\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"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\":\"60px\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":600},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"javascript\":\"\",\"css\":\".uranus.tparrows:before {\\n    font-size: 20px !important;\\n}\\n.Maple-Big-Title{letter-spacing: 25px !important;}\\n.Maple-Small-Text{letter-spacing: 10px !important;}\\n\\n@media only screen and (max-width: 479px) {\\n.Maple-Big-Title{letter-spacing: 10px !important;}\\n.Maple-Small-Text{letter-spacing: 5px !important;}\\n\\n}\"},\"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\":\"-1\"},\"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\":\"1\",\"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\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1013,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"768\",\"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\":true,\"rtl\":false,\"style\":3005,\"preset\":\"custom\",\"presets\":{\"bullet-hover-def\":true,\"bullet-hover\":\"rgba(0,0,0,0.41)\",\"bullet-color-def\":true,\"bullet-color\":\"#ffffff\",\"bullet-size-def\":true,\"bullet-size\":\"12\"},\"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.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}', '{\"version\":\"6.2.0\"}', ''),
(3, 'Home v2', 'homev2', '{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"homev2\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"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\":900,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"javascript\":\"\",\"css\":\".tp-gradientbg { \\n\\/* Permalink - use to edit and share this gradient: http:\\/\\/colorzilla.com\\/gradient-editor\\/#ffce00+0,ffce00+75,e58d00+100&0+40,0.35+75,0.5+100 *\\/\\nbackground: -moz-radial-gradient(center, ellipse cover,  rgba(255,206,0,0) 0%, rgba(255,206,0,0) 40%, rgba(255,206,0,0.35) 75%, rgba(229,141,0,0.5) 100%); \\/* FF3.6-15 *\\/\\nbackground: -webkit-radial-gradient(center, ellipse cover,  rgba(255,206,0,0) 0%,rgba(255,206,0,0) 40%,rgba(255,206,0,0.35) 75%,rgba(229,141,0,0.5) 100%); \\/* Chrome10-25,Safari5.1-6 *\\/\\nbackground: radial-gradient(ellipse at center,  rgba(255,206,0,0) 0%,rgba(255,206,0,0) 40%,rgba(255,206,0,0.35) 75%,rgba(229,141,0,0.5) 100%); \\/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ *\\/\\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00ffce00\', endColorstr=\'#80e58d00\',GradientType=1 ); \\/* IE6-9 fallback on horizontal gradient *\\/\\n\\n  }\"},\"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\":\"#000000\",\"type\":\"2\"},\"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\":\"1\",\"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\":\"single\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"2\",\"4\",\"6\",\"8\",\"10\",\"12\",\"14\",\"16\",\"18\",\"20\",\"22\",\"24\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":true,\"layerOverflow\":false,\"overflow\":true,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"300\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":10,\"multiplicator\":\"1.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}', '{\"version\":\"6.2.0\"}', ''),
(4, 'Home Small Slider', 'home-small-slider', '{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home-small-slider\\\\\\\"]\",\"layouttype\":\"auto\",\"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\":\"4000\",\"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\":false,\"t\":false,\"m\":false},\"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\":\"2\"},\"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\":false,\"blockDragVertical\":true,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\":true,\"rtl\":false,\"style\":3005,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"left\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"20\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":\"\",\"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.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}', '{\"version\":\"6.2.0\"}', ''),
(5, 'Home v4', 'homev4', '{\"addOns\":[],\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"homev4\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullscreen\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"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\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"60px\",\"width\":{\"d\":1200,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":800,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":800,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":false,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":\"5\",\"maxRotation\":\"25\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":75,\"space\":\"30\",\"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\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#aaaaaa\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"1\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false},\"progressbar\":{\"set\":true,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"8\",\"radius\":10,\"vertical\":\"top\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.25)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":true,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"local\"},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1013,\"preset\":\"custom\",\"presets\":{\"width-def\":true,\"width\":\"60\",\"font-size-def\":true,\"font-size\":\"60\",\"height-def\":true,\"height\":\"60\",\"background\":\"rgba(255,255,255,0)\",\"background-def\":false},\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"767\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":false,\"style\":3005,\"preset\":\"custom\",\"presets\":{\"bullet-size-def\":true,\"bullet-size\":\"12\",\"bullet-color\":\"#ffffff\",\"bullet-color-def\":false,\"border\":\"2\",\"border-def\":false,\"bullet-hover\":\"rgba(0,0,0,0.21)\",\"bullet-hover-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateURLId\":false,\"debugMode\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":true,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"-60\",\"-70\",\"200\",\"-120\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"1000\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"homev4\\\"][\\/rev_slider]\"}', '{\"version\":\"6.2.0\"}', '');
INSERT INTO `wp_revslider_sliders` (`id`, `title`, `alias`, `params`, `settings`, `type`) VALUES
(6, 'BeforeAfterSlider', 'beforeafterslider', '{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"beforeafterslider\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":{\"revslider-whiteboard-addon\":{\"enable\":false,\"writehand\":{\"width\":\"572\",\"height\":\"691\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/write_right_angle.png\"},\"movehand\":{\"width\":\"400\",\"height\":\"1000\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/hand_point_right.png\"}},\"revslider-slicey-addon\":{\"enable\":false},\"revslider-typewriter-addon\":{\"enable\":false},\"revslider-filmstrip-addon\":{\"enable\":false},\"revslider-snow-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"max\":{\"number\":\"400\",\"opacity\":\"1\",\"sinus\":\"100\",\"size\":\"6\",\"speed\":\"100\"},\"min\":{\"number\":400,\"opacity\":\"0.3\",\"sinus\":\"1\",\"size\":\"0.2\",\"speed\":\"30\"}},\"revslider-beforeafter-addon\":{\"enable\":true,\"icon\":{\"color\":\"#ffffff\",\"size\":\"35\",\"space\":\"10\",\"up\":\"fa-caret-up\",\"down\":\"fa-caret-down\",\"left\":\"fa-caret-left\",\"right\":\"fa-caret-right\",\"shadow\":{\"set\":false,\"blur\":\"10\",\"color\":\"rgba(0, 0, 0, 0.35)\"}},\"drag\":{\"padding\":\"0\",\"radius\":\"0\",\"bgcolor\":\"transparent\",\"border\":{\"set\":false,\"width\":\"1\",\"color\":\"#000000\"},\"boxshadow\":{\"set\":false,\"blur\":\"10\",\"strength\":\"3\",\"color\":\"rgba(0, 0, 0, 0.35)\"}},\"divider\":{\"size\":\"1\",\"color\":\"rgba(255, 255, 255, 0.5)\",\"shadow\":{\"set\":false,\"blur\":\"10\",\"strength\":\"3\",\"color\":\"rgba(0, 0, 0, 0.35)\"}},\"onclick\":{\"set\":true,\"time\":\"500\",\"easing\":\"power2.out\",\"cursor\":\"move\"}},\"revslider-polyfold-addon\":{\"enable\":false,\"bottom\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"},\"top\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"}},\"revslider-particles-addon\":{\"enable\":true}},\"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\":false,\"t\":false,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1200,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":800,\"n\":700,\"t\":700,\"m\":700},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"javascript\":\"var ua = window.navigator.userAgent;\\nvar msie = ua.indexOf(\\\"MSIE \\\");\\n\\nif(msie > 0 || !!navigator.userAgent.match(\\/Trident.*rv\\\\:11\\\\.\\/) || (\'CSS\' in window && \'supports\' in window.CSS && !window.CSS.supports(\'mix-blend-mode\', \'screen\'))) {\\n \\n var bgColor = \'rgba(245, 245, 245, 0.5)\';\\n \\/\\/jQuery(\'.rev_slider .rs-layer[data-blendmode]\').removeAttr(\'data-blendmode\').css(\'background\', bgColor);\\n jQuery(\'.rev_slider .rs-layer.tp-blendvideo[data-blendmode]\').remove();\\n}\",\"css\":\".tp-whiteshadow { \\n  text-shadow: -2px 1px white, \\n          -3px 2px white, \\n          -4px 3px white,            \\n          -5px 4px white, \\n          -6px 5px white,\\n          -7px 6px white,\\n          -8px 7px white,\\n          -9px 8px white,\\n          -10px 9px white,\\n          -11px 10px white,\\n          -12px 11px white;\\n}\\n.tp-blackshadow { \\n  text-shadow: -2px 1px #222, \\n          -3px 2px #222, \\n          -4px 3px #222,            \\n          -5px 4px #222, \\n          -6px 5px #222,\\n          -7px 6px #222,\\n          -8px 7px #222,\\n          -9px 8px #222,\\n          -10px 9px #222,\\n          -11px 10px #222,\\n          -12px 11px #222;\\n}\"},\"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\":\"#252525\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"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\":\"1\",\"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\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1006,\"preset\":\"custom\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":\"-20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"center\",\"vertical\":\"bottom\",\"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\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"12\",\"16\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":true,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"mousescroll\"}},\"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\"}', 'template'),
(7, 'BeforeAfterSlider 1', 'beforeafterslider-1', '{\"addOns\":{\"revslider-whiteboard-addon\":{\"enable\":false,\"writehand\":{\"width\":\"572\",\"height\":\"691\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/write_right_angle.png\"},\"movehand\":{\"width\":\"400\",\"height\":\"1000\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/hand_point_right.png\"}},\"revslider-slicey-addon\":{\"enable\":false},\"revslider-typewriter-addon\":{\"enable\":false},\"revslider-filmstrip-addon\":{\"enable\":false},\"revslider-snow-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"max\":{\"number\":\"400\",\"opacity\":\"1\",\"sinus\":\"100\",\"size\":\"6\",\"speed\":\"100\"},\"min\":{\"number\":400,\"opacity\":\"0.3\",\"sinus\":\"1\",\"size\":\"0.2\",\"speed\":\"30\"}},\"revslider-beforeafter-addon\":{\"enable\":true,\"icon\":{\"color\":\"#ffffff\",\"size\":\"35\",\"space\":\"10\",\"up\":\"fa-caret-up\",\"down\":\"fa-caret-down\",\"left\":\"fa-caret-left\",\"right\":\"fa-caret-right\",\"shadow\":{\"set\":false,\"blur\":\"10\",\"color\":\"rgba(0, 0, 0, 0.35)\"}},\"drag\":{\"padding\":\"0\",\"radius\":\"0\",\"bgcolor\":\"transparent\",\"border\":{\"set\":false,\"width\":\"1\",\"color\":\"#000000\"},\"boxshadow\":{\"set\":false,\"blur\":\"10\",\"strength\":\"3\",\"color\":\"rgba(0, 0, 0, 0.35)\"}},\"divider\":{\"size\":\"1\",\"color\":\"rgba(255, 255, 255, 0.5)\",\"shadow\":{\"set\":false,\"blur\":\"10\",\"strength\":\"3\",\"color\":\"rgba(0, 0, 0, 0.35)\"}},\"onclick\":{\"set\":true,\"time\":\"500\",\"easing\":\"power2.out\",\"cursor\":\"move\"}},\"revslider-polyfold-addon\":{\"enable\":false,\"bottom\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"},\"top\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"}},\"revslider-particles-addon\":{\"enable\":true}},\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"beforeafterslider-1\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullscreen\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"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\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":false,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1200,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":800,\"n\":700,\"t\":700,\"m\":700},\"editorCache\":{\"d\":800,\"n\":700,\"t\":700,\"m\":700},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\".tp-whiteshadow { \\n  text-shadow: -2px 1px white, \\n          -3px 2px white, \\n          -4px 3px white,            \\n          -5px 4px white, \\n          -6px 5px white,\\n          -7px 6px white,\\n          -8px 7px white,\\n          -9px 8px white,\\n          -10px 9px white,\\n          -11px 10px white,\\n          -12px 11px white;\\n}\\n.tp-blackshadow { \\n  text-shadow: -2px 1px #222, \\n          -3px 2px #222, \\n          -4px 3px #222,            \\n          -5px 4px #222, \\n          -6px 5px #222,\\n          -7px 6px #222,\\n          -8px 7px #222,\\n          -9px 8px #222,\\n          -10px 9px #222,\\n          -11px 10px #222,\\n          -12px 11px #222;\\n}\",\"javascript\":\"var ua = window.navigator.userAgent;\\nvar msie = ua.indexOf(\\\"MSIE \\\");\\n\\nif(msie > 0 || !!navigator.userAgent.match(\\/Trident.*rv\\\\:11\\\\.\\/) || (\'CSS\' in window && \'supports\' in window.CSS && !window.CSS.supports(\'mix-blend-mode\', \'screen\'))) {\\n \\n var bgColor = \'rgba(245, 245, 245, 0.5)\';\\n \\/\\/jQuery(\'.rev_slider .rs-layer[data-blendmode]\').removeAttr(\'data-blendmode\').css(\'background\', bgColor);\\n jQuery(\'.rev_slider .rs-layer.tp-blendvideo[data-blendmode]\').remove();\\n}\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"#252525\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"1\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5\",\"radius\":10,\"vertical\":\"top\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(0,0,0,0.15)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"local\"},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1006,\"preset\":\"custom\",\"presets\":{\"left-icon\":\"\\\\e824\",\"left-icon-def\":false,\"right-icon\":\"\\\\e825\",\"right-icon-def\":false},\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":\"-20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":21,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"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\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateURLId\":false,\"debugMode\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"12\",\"16\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":true,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"mousescroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"beforeafterslider-1\\\"][\\/rev_slider]\"}', '{\"version\":\"6.2.0\"}', ''),
(8, 'Club Flyer', 'clubflyer', '{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"clubflyer\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"type\":\"hero\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":{\"revslider-explodinglayers-addon\":{\"enable\":true},\"revslider-paintbrush-addon\":{\"enable\":false},\"revslider-particles-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"hideOnMobile\":true,\"particles\":{\"shape\":\"triangle\",\"number\":\"80\",\"size\":2,\"sizeMin\":0.75,\"random\":true},\"styles\":{\"border\":{\"enable\":false,\"color\":\"#ffffff\",\"opacity\":\"100\",\"size\":\"1\"},\"lines\":{\"enable\":false,\"color\":\"#ffffff\",\"width\":\"1\",\"opacity\":\"40\",\"distance\":\"150\"},\"particle\":{\"color\":\"#000000\",\"opacity\":100,\"opacityMin\":50,\"opacityRandom\":false,\"zIndex\":\"4\"}},\"movement\":{\"enable\":true,\"randomSpeed\":true,\"speed\":\"1\",\"speedMin\":\"3\",\"direction\":\"top\",\"straight\":true,\"bounce\":false},\"interactivity\":{\"hoverMode\":\"none\",\"clickMode\":\"none\"},\"bubble\":{\"distance\":\"400\",\"size\":\"40\",\"opacity\":\"40\"},\"grab\":{\"distance\":\"400\",\"opacity\":\"50\"},\"repulse\":{\"distance\":\"200\",\"easing\":100},\"pulse\":{\"size\":{\"enable\":false,\"speed\":\"40\",\"min\":0.75,\"sync\":false},\"opacity\":{\"enable\":false,\"speed\":\"3\",\"min\":\"0\",\"sync\":false}}}},\"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\":{\"javascript\":\"\",\"css\":\".club-gradient {  \\nbackground: -webkit-linear-gradient(45deg,  #fde501 0%, #ff5287 50% ,#d72400 100%);\\n-webkit-background-clip: text;\\n-webkit-text-fill-color: transparent;\\n\\n\\/*text-shadow: -5px -5px 0px rgba(255, 255, 255, 1);*\\/\\n}\"},\"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\":\"-1\"},\"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\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"2\",\"4\",\"6\",\"8\",\"10\",\"12\",\"14\",\"-2\",\"-4\",\"-6\",\"-8\",\"-10\",\"-12\",\"-14\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":true,\"layerOverflow\":true,\"overflow\":true,\"shadow\":false,\"zCorrection\":\"150\"},\"mouse\":{\"speed\":\"2000\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"slidercenter\",\"type\":\"mousescroll\"}},\"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\"}', 'template'),
(9, 'PUBLICATIONS', 'club-flyer', '{\"addOns\":{\"revslider-explodinglayers-addon\":{\"enable\":true},\"revslider-paintbrush-addon\":{\"enable\":false},\"revslider-particles-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"hideOnMobile\":true,\"particles\":{\"shape\":\"triangle\",\"number\":\"80\",\"size\":2,\"sizeMin\":0.75,\"random\":true},\"styles\":{\"border\":{\"enable\":false,\"color\":\"#ffffff\",\"opacity\":\"100\",\"size\":\"1\"},\"lines\":{\"enable\":false,\"color\":\"#ffffff\",\"width\":\"1\",\"opacity\":\"40\",\"distance\":\"150\"},\"particle\":{\"color\":\"#000000\",\"opacity\":100,\"opacityMin\":50,\"opacityRandom\":false,\"zIndex\":\"4\"}},\"movement\":{\"enable\":true,\"randomSpeed\":true,\"speed\":\"1\",\"speedMin\":\"3\",\"direction\":\"top\",\"straight\":true,\"bounce\":false},\"interactivity\":{\"hoverMode\":\"none\",\"clickMode\":\"none\"},\"bubble\":{\"distance\":\"400\",\"size\":\"40\",\"opacity\":\"40\"},\"grab\":{\"distance\":\"400\",\"opacity\":\"50\"},\"repulse\":{\"distance\":\"200\",\"easing\":100},\"pulse\":{\"size\":{\"enable\":false,\"speed\":\"40\",\"min\":0.75,\"sync\":false},\"opacity\":{\"enable\":false,\"speed\":\"3\",\"min\":\"0\",\"sync\":false}}}},\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"club-flyer\\\"][\\/rev_slider]\",\"type\":\"hero\",\"layouttype\":\"fullscreen\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"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\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\".club-gradient {  \\nbackground: -webkit-linear-gradient(45deg,  #fde501 0%, #ff5287 50% ,#d72400 100%);\\n-webkit-background-clip: text;\\n-webkit-text-fill-color: transparent;\\n\\n\\/*text-shadow: -5px -5px 0px rgba(255, 255, 255, 1);*\\/\\n}\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5\",\"radius\":10,\"vertical\":\"top\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(0,0,0,0.15)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"local\"},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"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\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateURLId\":false,\"debugMode\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"2\",\"4\",\"6\",\"8\",\"10\",\"12\",\"14\",\"-2\",\"-4\",\"-6\",\"-8\",\"-10\",\"-12\",\"-14\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":true,\"layerOverflow\":true,\"overflow\":true,\"shadow\":false,\"zCorrection\":\"150\"},\"mouse\":{\"speed\":\"2000\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"slidercenter\",\"type\":\"mousescroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"club-flyer\\\"][\\/rev_slider]\"}', '{\"version\":\"6.2.0\"}', '');
INSERT INTO `wp_revslider_sliders` (`id`, `title`, `alias`, `params`, `settings`, `type`) VALUES
(10, 'Project Carousel Template', 'project-carousel', '{\"addOns\":[],\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"project-carousel\\\"][\\/rev_slider]\",\"type\":\"carousel\",\"layouttype\":\"fullscreen\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"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\":{\"intelligentInherit\":false,\"autoResponsive\":false,\"responsiveChilds\":false,\"responsiveOffset\":false,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"700px\",\"n\":\"600px\",\"t\":\"500px\",\"m\":\"400px\"},\"editorCache\":{\"d\":700,\"n\":600,\"t\":500,\"m\":400},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":true,\"justifyMaxWidth\":true,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"individual\",\"overflowHidden\":false},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"#000000\",\"padding\":0,\"dottedOverlay\":\"none\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":false,\"stopOnHover\":false,\"stopSlider\":true,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"height\":5,\"position\":\"bottom\",\"color\":\"rgba(255,255,255,0.5)\"},\"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\":\"140px\",\"height\":\"100px\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":false,\"style\":\"2001\",\"preset\":\"\",\"presets\":{\"bg\":\"rgba(0, 0, 0, 0.75)\",\"bg-def\":true,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":true,\"hbgb\":\"#ffffff\",\"hbgb-def\":true},\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":true,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"right\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"70\",\"widthMin\":\"70\",\"innerOuter\":\"inner\",\"offsetX\":\"15\",\"offsetY\":\"15\",\"space\":\"5\",\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":0,\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"project-carousel\\\"][\\/rev_slider]\",\"uid\":\"49c85ad406da943bdd25f08fd6496748\"}', '{\"version\":\"6.2.0\"}', 'template'),
(11, 'Project Carousel1', 'project-carousel1', '{\"addOns\":[],\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"project-carousel1\\\"]\",\"type\":\"carousel\",\"layouttype\":\"fullscreen\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"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\":{\"intelligentInherit\":false,\"autoResponsive\":false,\"responsiveChilds\":false,\"responsiveOffset\":false,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"700px\",\"n\":\"600px\",\"t\":\"500px\",\"m\":\"400px\"},\"editorCache\":{\"d\":700,\"n\":600,\"t\":500,\"m\":400},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":true,\"justifyMaxWidth\":true,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"individual\",\"overflowHidden\":false},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"#000000\",\"padding\":0,\"dottedOverlay\":\"none\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":false,\"stopOnHover\":false,\"stopSlider\":true,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"height\":5,\"position\":\"bottom\",\"color\":\"rgba(255,255,255,0.5)\"},\"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\":\"140px\",\"height\":\"100px\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":false,\"style\":\"2001\",\"preset\":\"\",\"presets\":{\"bg\":\"rgba(0, 0, 0, 0.75)\",\"bg-def\":true,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":true,\"hbgb\":\"#ffffff\",\"hbgb-def\":true},\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":true,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"right\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"70\",\"widthMin\":\"70\",\"innerOuter\":\"inner\",\"offsetX\":\"15\",\"offsetY\":\"15\",\"space\":\"5\",\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":0,\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"project-carousel\\\"][\\/rev_slider]\",\"uid\":\"49c85ad406da943bdd25f08fd6496748\",\"title\":\"Project Carousel1\",\"alias\":\"project-carousel1\"}', '{\"version\":\"6.2.0\"}', ''),
(13, 'Classic Cars Evolution1', 'classic-cars-evolution1', '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":true,\"icon\":{\"color\":\"#ffffff\",\"size\":\"30\",\"space\":\"15px\",\"up\":\"fa-caret-up\",\"down\":\"fa-caret-down\",\"left\":\"fa-caret-left\",\"right\":\"fa-caret-right\",\"shadow\":{\"set\":false,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.35)\"}},\"drag\":{\"padding\":\"15px\",\"radius\":0,\"bgcolor\":\"rgba(253, 1, 120, 0)\",\"border\":{\"set\":false,\"width\":1,\"color\":\"#000000\"},\"boxshadow\":{\"set\":false,\"blur\":10,\"strength\":3,\"color\":\"rgba(0, 0, 0, 0.35)\"}},\"divider\":{\"size\":1,\"color\":\"rgba(255, 255, 255, 0.5)\",\"shadow\":{\"set\":false,\"blur\":10,\"strength\":3,\"color\":\"#000000\"}},\"onclick\":{\"set\":true,\"time\":\"500ms\",\"easing\":\"power2.out\",\"cursor\":\"pointer\"}}},\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"classic-cars-evolution1\\\"]\",\"type\":\"hero\",\"layouttype\":\"fullscreen\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"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\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":false,\"m\":false},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":\"1000px\",\"n\":\"1000px\",\"t\":778,\"m\":480},\"height\":{\"d\":900,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":900,\"n\":768,\"t\":691,\"m\":720},\"overflow\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false},\"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,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"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\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"height\":5,\"position\":\"bottom\",\"color\":\"rgba(255,255,255,0.5)\"},\"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\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"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\":778}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":0,\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"debugMode\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slideCenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"Classic-Cars-Evolution\\\"][\\/rev_slider]\",\"uid\":\"7061757f128fd624b0227715dab73b74\",\"title\":\"Classic Cars Evolution1\",\"alias\":\"classic-cars-evolution1\"}', '{\"version\":\"6.2.0\"}', ''),
(14, 'Website Intro', 'websiteintro', '{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"websiteintro\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":{\"revslider-whiteboard-addon\":{\"enable\":false,\"writehand\":{\"width\":\"572\",\"height\":\"691\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/write_right_angle.png\"},\"movehand\":{\"width\":\"400\",\"height\":\"1000\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/hand_point_right.png\"}},\"revslider-slicey-addon\":{\"enable\":true},\"revslider-typewriter-addon\":{\"enable\":false},\"revslider-filmstrip-addon\":{\"enable\":false},\"revslider-snow-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"max\":{\"number\":\"400\",\"opacity\":\"1\",\"sinus\":\"100\",\"size\":\"6\",\"speed\":\"100\"},\"min\":{\"number\":400,\"opacity\":\"0.3\",\"sinus\":\"1\",\"size\":\"0.2\",\"speed\":\"30\"}},\"revslider-polyfold-addon\":{\"enable\":false,\"bottom\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"},\"top\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"}},\"revslider-particles-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"hideOnMobile\":true,\"particles\":{\"shape\":\"circle\",\"number\":\"80\",\"size\":2,\"sizeMin\":0.5,\"random\":true},\"styles\":{\"border\":{\"enable\":false,\"color\":\"#ffffff\",\"opacity\":\"100\",\"size\":\"1\"},\"lines\":{\"enable\":false,\"color\":\"#ffffff\",\"width\":\"1\",\"opacity\":\"40\",\"distance\":\"150\"},\"particle\":{\"color\":\"#ffffff\",\"opacity\":\"50\",\"opacityMin\":\"25\",\"opacityRandom\":false,\"zIndex\":\"default\"}},\"movement\":{\"enable\":true,\"randomSpeed\":true,\"speed\":\"6\",\"speedMin\":\"3\",\"direction\":\"none\",\"straight\":true,\"bounce\":false},\"interactivity\":{\"hoverMode\":\"none\",\"clickMode\":\"none\"},\"bubble\":{\"distance\":\"400\",\"size\":\"40\",\"opacity\":\"40\"},\"grab\":{\"distance\":\"400\",\"opacity\":\"50\"},\"repulse\":{\"distance\":\"200\",\"easing\":100},\"pulse\":{\"size\":{\"enable\":false,\"speed\":\"40\",\"min\":0.5,\"sync\":false},\"opacity\":{\"enable\":false,\"speed\":\"3\",\"min\":\"0\",\"sync\":false}}}},\"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\":\"60px\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"javascript\":\"revapi14.bind(\\\"revolution.slide.onloaded\\\",function (e) {\\n\\trevapi14.addClass(\\\"tiny_bullet_slider\\\");\\n});\",\"css\":\".tiny_bullet_slider .tp-bullet:before {\\n    content: \\\" \\\";\\n    position: absolute;\\n    width: 100%;\\n    height: 25px;\\n    top:-12px;\\n    left:0px;\\n    background: transparent;\\n  }\"},\"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\":\"#000000\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"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\":true,\"height\":\"5\",\"position\":\"bottom\",\"color\":\"#57ca85\"},\"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\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\":true,\"rtl\":false,\"style\":3,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"50\",\"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\"}', 'template');
INSERT INTO `wp_revslider_sliders` (`id`, `title`, `alias`, `params`, `settings`, `type`) VALUES
(15, 'Website Intro', 'website-intro', '{\"addOns\":{\"revslider-whiteboard-addon\":{\"enable\":false,\"writehand\":{\"width\":\"572\",\"height\":\"691\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/write_right_angle.png\"},\"movehand\":{\"width\":\"400\",\"height\":\"1000\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/hand_point_right.png\"}},\"revslider-slicey-addon\":{\"enable\":true},\"revslider-typewriter-addon\":{\"enable\":false},\"revslider-filmstrip-addon\":{\"enable\":false},\"revslider-snow-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"max\":{\"number\":\"400\",\"opacity\":\"1\",\"sinus\":\"100\",\"size\":\"6\",\"speed\":\"100\"},\"min\":{\"number\":400,\"opacity\":\"0.3\",\"sinus\":\"1\",\"size\":\"0.2\",\"speed\":\"30\"}},\"revslider-polyfold-addon\":{\"enable\":false,\"bottom\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"},\"top\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"}},\"revslider-particles-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"hideOnMobile\":true,\"particles\":{\"shape\":\"circle\",\"number\":\"80\",\"size\":2,\"sizeMin\":0.5,\"random\":true},\"styles\":{\"border\":{\"enable\":false,\"color\":\"#ffffff\",\"opacity\":\"100\",\"size\":\"1\"},\"lines\":{\"enable\":false,\"color\":\"#ffffff\",\"width\":\"1\",\"opacity\":\"40\",\"distance\":\"150\"},\"particle\":{\"color\":\"#ffffff\",\"opacity\":\"50\",\"opacityMin\":\"25\",\"opacityRandom\":false,\"zIndex\":\"default\"}},\"movement\":{\"enable\":true,\"randomSpeed\":true,\"speed\":\"6\",\"speedMin\":\"3\",\"direction\":\"none\",\"straight\":true,\"bounce\":false},\"interactivity\":{\"hoverMode\":\"none\",\"clickMode\":\"none\"},\"bubble\":{\"distance\":\"400\",\"size\":\"40\",\"opacity\":\"40\"},\"grab\":{\"distance\":\"400\",\"opacity\":\"50\"},\"repulse\":{\"distance\":\"200\",\"easing\":100},\"pulse\":{\"size\":{\"enable\":false,\"speed\":\"40\",\"min\":0.5,\"sync\":false},\"opacity\":{\"enable\":false,\"speed\":\"3\",\"min\":\"0\",\"sync\":false}}}},\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"website-intro\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullscreen\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"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\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"60px\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\".tiny_bullet_slider .tp-bullet:before {\\n    content: \\\" \\\";\\n    position: absolute;\\n    width: 100%;\\n    height: 25px;\\n    top:-12px;\\n    left:0px;\\n    background: transparent;\\n  }\",\"javascript\":\"revapi15.bind(\\\"revolution.slide.onloaded\\\",function (e) {\\n\\trevapi15.addClass(\\\"tiny_bullet_slider\\\");\\n});\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"#000000\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false},\"progressbar\":{\"set\":true,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"#57ca85\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"local\"},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":false,\"style\":3,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"50\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateURLId\":false,\"debugMode\":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\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\"},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\"},{\"alias\":\"Content Text\",\"v\":\"#00ffff\"}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"website-intro\\\"][\\/rev_slider]\"}', '{\"version\":\"6.2.0\"}', ''),
(16, 'Exploration Header', 'explorationheader', '{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"explorationheader\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":{\"revslider-whiteboard-addon\":{\"enable\":false,\"writehand\":{\"width\":\"572\",\"height\":\"691\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/write_right_angle.png\"},\"movehand\":{\"width\":\"400\",\"height\":\"1000\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/hand_point_right.png\"}}},\"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\":\"60px\",\"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\":\"-1\"},\"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\":\"1\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"bottom\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":true,\"duration\":\"2000\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"single\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"style\":1006,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1199\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"horizontal\":\"right\",\"vertical\":\"bottom\",\"offsetX\":\"60\",\"offsetY\":\"20\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"bottom\",\"offsetX\":\"20\",\"offsetY\":\"20\",\"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\":true,\"rtl\":false,\"style\":8,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1200\",\"spanWrapper\":false,\"horizontal\":\"right\",\"vertical\":\"bottom\",\"amount\":\"3\",\"direction\":\"vertical\",\"height\":\"50\",\"width\":\"350\",\"widthMin\":\"350\",\"innerOuter\":\"inner\",\"offsetX\":\"43\",\"offsetY\":\"110\",\"space\":\"25\",\"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\":true,\"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\":\"slidercenter\",\"type\":\"scroll\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":10,\"multiplicator\":\"1.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}', '{\"version\":\"6.2.0\"}', 'template'),
(17, 'Exploration Header', 'exploration-header', '{\"addOns\":{\"revslider-whiteboard-addon\":{\"enable\":false,\"writehand\":{\"width\":\"572\",\"height\":\"691\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/write_right_angle.png\"},\"movehand\":{\"width\":\"400\",\"height\":\"1000\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/hand_point_right.png\"}}},\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"exploration-header\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullscreen\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"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\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"60px\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"1\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(0,0,0,0.15)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":true,\"duration\":\"2000\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"single\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"local\"},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":true,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1006,\"preset\":\"default\",\"presets\":{\"left-icon\":\"\\\\e824\",\"left-icon-def\":false,\"right-icon\":\"\\\\e825\",\"right-icon-def\":false},\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1199\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"bottom\",\"offsetX\":\"60\",\"offsetY\":\"20\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"bottom\",\"offsetX\":\"20\",\"offsetY\":\"20\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":false,\"style\":\"4001\",\"preset\":\"default\",\"presets\":{\"borderc\":\"rgba(255,255,255,0.15)\",\"borderc-def\":false,\"size\":\"60\",\"size-def\":false,\"bg\":\"rgba(0,0,0,0)\",\"bg-def\":false,\"color\":\"rgba(51,51,51,0)\",\"color-def\":false,\"datecolor\":\"rgba(255,255,255,0.5)\",\"datecolor-def\":false,\"datesize\":\"12\",\"datesize-def\":false,\"titlecolor\":\"#ffffff\",\"titlecolor-def\":false,\"titlesize\":\"14\",\"titlesize-def\":false,\"hbg\":\"rgba(0,0,0,0.51)\",\"hbg-def\":false},\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1200\",\"spanWrapper\":false,\"horizontal\":\"right\",\"vertical\":\"bottom\",\"amount\":\"3\",\"direction\":\"vertical\",\"height\":\"80\",\"width\":\"300\",\"widthMin\":\"350\",\"innerOuter\":\"inner\",\"offsetX\":-446,\"offsetY\":25,\"space\":\"25\",\"align\":\"grid\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"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\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateURLId\":false,\"debugMode\":false},\"parallax\":{\"set\":true,\"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\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"exploration-header\\\"][\\/rev_slider]\"}', '{\"version\":\"6.2.0\"}', ''),
(18, 'Agency Website Header', 'agencywebsiteheader', '{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"agencywebsiteheader\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"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\":\"60px\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"javascript\":\"jQuery(\'.lightsensor\').on(\'mousemove\',function() {\\n\\tvar time = Math.round(Math.random()*20)\\/100,\\n        alpha = 0.7+(Math.random()*3)\\/10;\\n    punchgs.TweenLite.to(jQuery(\'.lighton\'),time,{autoAlpha:alpha,ease:punchgs.power3.out});\\n});\",\"css\":\"\"},\"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\":\"#333333\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"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\":\"1\",\"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\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"50\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"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\":\"\",\"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\":\"\",\"ignoreHeightChangesUnderLimit\":0,\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"25\",\"20\",\"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\":\"scroll\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":10,\"multiplicator\":\"1.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.2.0\"}', '{\"version\":\"6.2.0\"}', 'template');
INSERT INTO `wp_revslider_sliders` (`id`, `title`, `alias`, `params`, `settings`, `type`) VALUES
(19, 'Agency Website Header', 'agency-website-header', '{\"addOns\":[],\"version\":\"6.2.0\",\"shortcode\":\"[rev_slider alias=\\\"agency-website-header\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullscreen\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"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\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"60px\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"jQuery(\'.lightsensor\').on(\'mousemove\',function() {\\n\\tvar time = Math.round(Math.random()*20)\\/100,\\n        alpha = 0.7+(Math.random()*3)\\/10;\\n    punchgs.TweenLite.to(jQuery(\'.lighton\'),time,{autoAlpha:alpha,ease:punchgs.power3.out});\\n});\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"#333333\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"1\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5\",\"radius\":10,\"vertical\":\"top\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(0,0,0,0.15)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"local\"},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":true,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"50\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"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\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":\"\",\"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\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"ignoreHeightChanges\":\"\",\"ignoreHeightChangesUnderLimit\":0,\"alternateURLId\":false,\"debugMode\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"25\",\"20\",\"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\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\"},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"agency-website-header\\\"][\\/rev_slider]\"}', '{\"version\":\"6.2.0\"}', ''),
(20, 'Carousel Gallery', 'carouselgallery', '{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"carouselgallery\\\\\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"carousel\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":{\"revslider-whiteboard-addon\":{\"enable\":false,\"writehand\":{\"width\":\"572\",\"height\":\"691\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/write_right_angle.png\"},\"movehand\":{\"width\":\"400\",\"height\":\"1000\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/hand_point_right.png\"}},\"revslider-slicey-addon\":{\"enable\":false},\"revslider-typewriter-addon\":{\"enable\":false},\"revslider-filmstrip-addon\":{\"enable\":false},\"revslider-snow-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"max\":{\"number\":\"400\",\"opacity\":\"1\",\"sinus\":\"100\",\"size\":\"6\",\"speed\":\"100\"},\"min\":{\"number\":400,\"opacity\":\"0.3\",\"sinus\":\"1\",\"size\":\"0.2\",\"speed\":\"30\"}},\"revslider-polyfold-addon\":{\"enable\":false,\"bottom\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"},\"top\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"}},\"revslider-particles-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"hideOnMobile\":true,\"particles\":{\"shape\":\"circle\",\"number\":\"80\",\"size\":2,\"sizeMin\":0.5,\"random\":true},\"styles\":{\"border\":{\"enable\":false,\"color\":\"#ffffff\",\"opacity\":\"100\",\"size\":\"1\"},\"lines\":{\"enable\":false,\"color\":\"#ffffff\",\"width\":\"1\",\"opacity\":\"40\",\"distance\":\"150\"},\"particle\":{\"color\":\"#ffffff\",\"opacity\":\"50\",\"opacityMin\":\"25\",\"opacityRandom\":false,\"zIndex\":\"default\"}},\"movement\":{\"enable\":true,\"randomSpeed\":true,\"speed\":\"6\",\"speedMin\":\"3\",\"direction\":\"none\",\"straight\":true,\"bounce\":false},\"interactivity\":{\"hoverMode\":\"none\",\"clickMode\":\"none\"},\"bubble\":{\"distance\":\"400\",\"size\":\"40\",\"opacity\":\"40\"},\"grab\":{\"distance\":\"400\",\"opacity\":\"50\"},\"repulse\":{\"distance\":\"200\",\"easing\":100},\"pulse\":{\"size\":{\"enable\":false,\"speed\":\"40\",\"min\":0.5,\"sync\":false},\"opacity\":{\"enable\":false,\"speed\":\"3\",\"min\":\"0\",\"sync\":false}}}},\"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\":800,\"n\":700,\"t\":400,\"m\":300},\"height\":{\"d\":600,\"n\":600,\"t\":500,\"m\":400},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"javascript\":\"\",\"css\":\".tp-gradientstyle {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.75) 100%); \\/* FF3.6+ *\\/\\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.75))); \\/* Chrome,Safari4+ *\\/\\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); \\/* Chrome10+,Safari5.1+ *\\/\\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.75) 100%); \\/* Opera 11.10+ *\\/\\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.75) 100%); \\/* IE10+ *\\/\\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.75) 100%); \\/* W3C *\\/\\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); \\/* IE6-9 *\\/}\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":false,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":\"5\",\"maxRotation\":\"15\",\"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\":\"#000000\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"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\":true,\"height\":\"8\",\"position\":\"top\",\"color\":\"rgba(255,255,255,0.25)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"single\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"120\",\"height\":\"120\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":true,\"rtl\":false,\"style\":2001,\"preset\":\"custom\",\"presets\":{\"hbgb-def\":true,\"hbgb\":\"#ffffff\",\"hovercolor-def\":true,\"hovercolor\":\"#ffffff\",\"bg-def\":true,\"bg\":\"#111111\"},\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1240\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"top\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"50\",\"widthMin\":\"50\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":true,\"rtl\":false,\"style\":4001,\"preset\":\"custom\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1240\",\"spanWrapper\":true,\"horizontal\":\"left\",\"vertical\":\"center\",\"amount\":\"6\",\"direction\":\"vertical\",\"height\":\"80\",\"width\":\"220\",\"widthMin\":\"220\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"0\",\"space\":\"0\",\"align\":\"slider\",\"padding\":\"0\",\"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\"}', 'template'),
(21, 'Carousel Gallery', 'carousel-gallery', '{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\"carousel-gallery\\\"]\",\"layouttype\":\"fullwidth\",\"type\":\"carousel\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":{\"revslider-whiteboard-addon\":{\"enable\":false,\"writehand\":{\"width\":\"572\",\"height\":\"691\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/write_right_angle.png\"},\"movehand\":{\"width\":\"400\",\"height\":\"1000\",\"originX\":\"50\",\"originY\":\"50\",\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider-whiteboard-addon\\/assets\\/images\\/hand_point_right.png\"}},\"revslider-slicey-addon\":{\"enable\":false},\"revslider-typewriter-addon\":{\"enable\":false},\"revslider-filmstrip-addon\":{\"enable\":false},\"revslider-snow-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"max\":{\"number\":\"400\",\"opacity\":\"1\",\"sinus\":\"100\",\"size\":\"6\",\"speed\":\"100\"},\"min\":{\"number\":400,\"opacity\":\"0.3\",\"sinus\":\"1\",\"size\":\"0.2\",\"speed\":\"30\"}},\"revslider-polyfold-addon\":{\"enable\":false,\"bottom\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"},\"top\":{\"enabled\":false,\"animated\":false,\"color\":\"#ffffff\",\"ease\":\"ease-out\",\"height\":\"100\",\"hideOnMobile\":false,\"inverted\":false,\"leftWidth\":\"50\",\"rightWidth\":\"50\",\"negative\":false,\"placement\":\"1\",\"point\":\"sides\",\"range\":\"slider\",\"responsive\":true,\"scroll\":true,\"time\":\"0.3\"}},\"revslider-particles-addon\":{\"enable\":false,\"endSlide\":\"last\",\"startSlide\":\"first\",\"hideOnMobile\":true,\"particles\":{\"shape\":\"circle\",\"number\":\"80\",\"size\":2,\"sizeMin\":0.5,\"random\":true},\"styles\":{\"border\":{\"enable\":false,\"color\":\"#ffffff\",\"opacity\":\"100\",\"size\":\"1\"},\"lines\":{\"enable\":false,\"color\":\"#ffffff\",\"width\":\"1\",\"opacity\":\"40\",\"distance\":\"150\"},\"particle\":{\"color\":\"#ffffff\",\"opacity\":\"50\",\"opacityMin\":\"25\",\"opacityRandom\":false,\"zIndex\":\"default\"}},\"movement\":{\"enable\":true,\"randomSpeed\":true,\"speed\":\"6\",\"speedMin\":\"3\",\"direction\":\"none\",\"straight\":true,\"bounce\":false},\"interactivity\":{\"hoverMode\":\"none\",\"clickMode\":\"none\"},\"bubble\":{\"distance\":\"400\",\"size\":\"40\",\"opacity\":\"40\"},\"grab\":{\"distance\":\"400\",\"opacity\":\"50\"},\"repulse\":{\"distance\":\"200\",\"easing\":100},\"pulse\":{\"size\":{\"enable\":false,\"speed\":\"40\",\"min\":0.5,\"sync\":false},\"opacity\":{\"enable\":false,\"speed\":\"3\",\"min\":\"0\",\"sync\":false}}}},\"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\":800,\"n\":700,\"t\":400,\"m\":300},\"height\":{\"d\":600,\"n\":600,\"t\":500,\"m\":400},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"javascript\":\"\",\"css\":\".tp-gradientstyle {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.75) 100%); \\/* FF3.6+ *\\/\\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.75))); \\/* Chrome,Safari4+ *\\/\\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); \\/* Chrome10+,Safari5.1+ *\\/\\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.75) 100%); \\/* Opera 11.10+ *\\/\\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.75) 100%); \\/* IE10+ *\\/\\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.75) 100%); \\/* W3C *\\/\\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); \\/* IE6-9 *\\/}\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":false,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":\"5\",\"maxRotation\":\"15\",\"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\":\"#000000\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"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\":true,\"height\":\"8\",\"position\":\"top\",\"color\":\"rgba(255,255,255,0.25)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"single\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"120\",\"height\":\"120\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":true,\"rtl\":false,\"style\":2001,\"preset\":\"custom\",\"presets\":{\"hbgb-def\":true,\"hbgb\":\"#ffffff\",\"hovercolor-def\":true,\"hovercolor\":\"#ffffff\",\"bg-def\":true,\"bg\":\"#111111\"},\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":true,\"hideOverLimit\":\"1240\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"top\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"50\",\"widthMin\":\"50\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":true,\"rtl\":false,\"style\":4001,\"preset\":\"custom\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":true,\"hideUnderLimit\":\"1240\",\"spanWrapper\":true,\"horizontal\":\"left\",\"vertical\":\"center\",\"amount\":\"6\",\"direction\":\"vertical\",\"height\":\"80\",\"width\":\"220\",\"widthMin\":\"220\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"0\",\"space\":\"0\",\"align\":\"slider\",\"padding\":\"0\",\"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\",\"title\":\"Carousel Gallery\",\"alias\":\"carousel-gallery\"}', '{\"version\":\"6.2.0\"}', '');

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_sliders_bkp` (
  `id` int(9) NOT NULL,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` longtext NOT NULL,
  `settings` text,
  `type` varchar(191) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(1, 1, 1, '{\"runtime\":{\"collapsedGroups\":[]},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]}}', '{\"1\":{\"text\":\"\",\"alias\":\"image-1\",\"uid\":1,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/Sydney-Photo-by-Engaging-Futures-scaled.jpg\",\"imageId\":45,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"2233px\",\"e\":true},\"n\":{\"v\":\"1844px\"},\"t\":{\"v\":\"1401px\"},\"m\":{\"v\":\"864px\"}},\"height\":{\"d\":{\"v\":\"1261px\",\"e\":true},\"n\":{\"v\":\"1041px\"},\"t\":{\"v\":\"790px\"},\"m\":{\"v\":\"487px\"}},\"originalWidth\":2560,\"originalHeight\":1446,\"aspectRatio\":{\"d\":{\"v\":1.7704011065006915},\"n\":{\"v\":1.7704011065006915},\"t\":{\"v\":1.7704011065006915},\"m\":{\"v\":1.7704011065006915}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"-498px\",\"e\":true},\"n\":{\"v\":\"-411px\"},\"t\":{\"v\":\"-312px\"},\"m\":{\"v\":\"-192px\"}},\"y\":{\"d\":{\"v\":\"-271px\",\"e\":true},\"n\":{\"v\":\"-223px\"},\"t\":{\"v\":\"-169px\"},\"m\":{\"v\":\"-104px\"}},\"zIndex\":6},\"group\":{\"groupOrder\":6},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.23\"}'),
(2, 2, 1, '{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/101.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loop\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"slidingoverlayhorizontal\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}', '{\"7\":{\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":false,\"blinking_speed\":\"500\",\"cursor_type\":\"one\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"\",\"looped\":false,\"newline_delay\":\"1000\",\"sequenced\":false,\"speed\":\"30\",\"start_delay\":\"1000\",\"word_delay\":\"off\"}},\"text\":\" \",\"alias\":\"BG FADE\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"cover\",\"originalWidth\":\"100%\",\"originalHeight\":\"100%\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5},\"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\":\"power4.out\",\"speed\":500,\"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\":\"power4.out\",\"speed\":500,\"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\":\"power4.inOut\",\"speed\":710,\"start\":9000,\"startRelative\":8500,\"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\":{\"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\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":false,\"blinking_speed\":\"500\",\"cursor_type\":\"one\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"\",\"looped\":false,\"newline_delay\":\"1000\",\"sequenced\":false,\"speed\":\"30\",\"start_delay\":\"1000\",\"word_delay\":\"off\"}},\"text\":\"WELCOME TO MAPLE\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-20px\",\"e\":true},\"n\":{\"v\":\"-20px\"},\"t\":{\"v\":\"-100px\",\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":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\":\"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\":\"power4.out\",\"speed\":2500,\"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\":\"power4.out\",\"speed\":2500,\"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\":\"nothing\",\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"style\":\"Maple-Big-Title\",\"color\":{\"d\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"e\":true},\"n\":{\"v\":\"rgba(16, 16, 16, 0.9)\"},\"t\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"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\":\"Josefin Sans\",\"fontSize\":{\"d\":{\"v\":\"38px\",\"e\":true},\"n\":{\"v\":\"38px\"},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\"},\"t\":{\"e\":true},\"m\":{\"v\":\"600\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"130px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"80px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"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\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"e\":true},\"n\":{\"v\":\"rgba(16, 16, 16, 0.9)\"},\"t\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"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\"},\"customCSS\":\"letter-spacing:-7px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"2\":{\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":true,\"blinking_speed\":\"500\",\"cursor_type\":\"two\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"167%20Clients%20Worldwide.,23%20Qualified%20Employees.,150%20Cups%20of%20Coffee%20per%20Day.\",\"looped\":true,\"newline_delay\":\"1000\",\"sequenced\":true,\"speed\":\"60\",\"start_delay\":\"1500\",\"word_delay\":\"off\"}},\"text\":\"A MINIMALIST WORDPRESS THEME\",\"alias\":\"TYPEWRITER TEXT\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"500px\",\"e\":true},\"m\":{\"v\":\"500px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"-10px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-100px\",\"e\":true},\"n\":{\"v\":\"65px\",\"e\":true},\"t\":{\"v\":\"-160px\",\"e\":true},\"m\":{\"v\":\"-50px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":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\":\"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\":\"power4.out\",\"speed\":2500,\"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\":\"power4.out\",\"speed\":2500,\"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\":\"nothing\",\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"style\":\"Maple-Small-Text\",\"color\":{\"d\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(68, 68, 68, 1)\"},\"t\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(68, 68, 68, 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\"]}},\"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\":\"Julius Sans One\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"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\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(68, 68, 68, 1)\"},\"t\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"subtype\":\"roundbutton\",\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":false,\"blinking_speed\":\"500\",\"cursor_type\":\"one\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"\",\"looped\":false,\"newline_delay\":\"1000\",\"sequenced\":false,\"speed\":\"30\",\"start_delay\":\"1000\",\"word_delay\":\"off\"}},\"text\":\"ABOUT US\",\"alias\":\"ABOUT US\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"660px\",\"e\":true},\"n\":{\"v\":\"550px\",\"e\":true},\"t\":{\"v\":\"-100px\",\"e\":true},\"m\":{\"v\":\"-90px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"240px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"75px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":500},{\"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\":\"power4.out\",\"speed\":2500,\"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\":\"power4.out\",\"speed\":2500,\"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\":\"nothing\",\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(16, 16, 16, 1)\"},\"t\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 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\"]}},\"padding\":{\"d\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]},\"t\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]},\"m\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Arial, Helvetica, sans-serif\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(16, 16, 16, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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(16, 16, 16, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(16, 16, 16, 1)\"},\"t\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(242, 242, 242, 1)\",\"backgroundColor\":\"rgba(16, 16, 16, 1)\",\"borderColor\":\"rgba(16, 16, 16, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"150\",\"ease\":\"power2.inOut\",\"svg\":{\"color\":\"rgba(242, 242, 242, 1)\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"scroll_under\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":3,\"scrollunder_offset\":\"-80px\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\",\"link_follow\":\"\"}],\"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;\\nletter-spacing:5px;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"6\":{\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":false,\"blinking_speed\":\"500\",\"cursor_type\":\"one\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"\",\"looped\":false,\"newline_delay\":\"1000\",\"sequenced\":false,\"speed\":\"30\",\"start_delay\":\"1000\",\"word_delay\":\"off\"}},\"text\":\"or\",\"alias\":\"OR TEXT\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"e\":true},\"m\":{\"v\":\"75px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":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\":\"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\":\"power4.out\",\"speed\":2500,\"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\":\"power4.out\",\"speed\":2500,\"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\":\"nothing\",\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(130, 130, 130, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(130, 130, 130, 1)\"},\"t\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(68, 68, 68, 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\"]}},\"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\":\"Georgia, serif\",\"fontStyle\":true,\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"textAlign\":{\"d\":{\"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\":{\"v\":\"rgba(130, 130, 130, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(130, 130, 130, 1)\"},\"t\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"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\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"subtype\":\"roundbutton\",\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":false,\"blinking_speed\":\"500\",\"cursor_type\":\"one\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"\",\"looped\":false,\"newline_delay\":\"1000\",\"sequenced\":false,\"speed\":\"30\",\"start_delay\":\"1000\",\"word_delay\":\"off\"}},\"text\":\"CONTACT\",\"alias\":\"CONTACT\",\"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\":\"660px\",\"e\":true},\"n\":{\"v\":\"550px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"80px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"240px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"75px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"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\":500},{\"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\":\"power4.out\",\"speed\":2500,\"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\":\"power4.out\",\"speed\":2500,\"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\":\"nothing\",\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"t\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 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\"]}},\"padding\":{\"d\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]},\"t\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]},\"m\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Arial, Helvetica, sans-serif\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"15px\",\"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}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(16, 16, 16, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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(16, 16, 16, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"t\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(242, 242, 242, 1)\",\"backgroundColor\":\"rgba(16, 16, 16, 1)\",\"borderColor\":\"rgba(16, 16, 16, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"150\",\"ease\":\"power2.inOut\",\"svg\":{\"color\":\"rgba(242, 242, 242, 1)\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"scroll_under\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":3,\"scrollunder_offset\":\"-80px\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\",\"link_follow\":\"\"}],\"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;\\nletter-spacing:5px;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(3, 2, 2, '{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/01596free.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loop\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"transition\":[\"slidingoverlayhorizontal\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}', '{\"7\":{\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":false,\"blinking_speed\":\"500\",\"cursor_type\":\"one\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"\",\"looped\":false,\"newline_delay\":\"1000\",\"sequenced\":false,\"speed\":\"30\",\"start_delay\":\"1000\",\"word_delay\":\"off\"}},\"text\":\" \",\"alias\":\"BG FADE\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"cover\",\"originalWidth\":\"100%\",\"originalHeight\":\"100%\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5},\"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\":\"power4.out\",\"speed\":500,\"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\":\"power4.out\",\"speed\":500,\"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\":\"power4.inOut\",\"speed\":710,\"start\":9000,\"startRelative\":8500,\"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\":{\"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\"]}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":false,\"blinking_speed\":\"500\",\"cursor_type\":\"one\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"\",\"looped\":false,\"newline_delay\":\"1000\",\"sequenced\":false,\"speed\":\"30\",\"start_delay\":\"1000\",\"word_delay\":\"off\"}},\"text\":\"CLEAN POWERFUL THEME\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-30px\",\"e\":true},\"n\":{\"v\":\"-30px\"},\"t\":{\"v\":\"-100px\",\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":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\":\"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\":\"power4.out\",\"speed\":2500,\"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\":\"power4.out\",\"speed\":2500,\"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\":\"nothing\",\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"style\":\"Maple-Big-Title\",\"color\":{\"d\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"e\":true},\"n\":{\"v\":\"rgba(16, 16, 16, 0.9)\"},\"t\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"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\":\"Josefin Sans\",\"fontSize\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\"},\"t\":{\"e\":true},\"m\":{\"v\":\"600\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"130px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"80px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"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\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"e\":true},\"n\":{\"v\":\"rgba(16, 16, 16, 0.9)\"},\"t\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 0.9)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"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\"},\"customCSS\":\"letter-spacing:-7px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"2\":{\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":true,\"blinking_speed\":\"500\",\"cursor_type\":\"two\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"167%20Clients%20Worldwide.,23%20Qualified%20Employees.,150%20Cups%20of%20Coffee%20per%20Day.\",\"looped\":true,\"newline_delay\":\"1000\",\"sequenced\":true,\"speed\":\"60\",\"start_delay\":\"1500\",\"word_delay\":\"off\"}},\"text\":\"MADE WITH LOVE BY TREETHEMES\",\"alias\":\"TYPEWRITER TEXT\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"500px\",\"e\":true},\"m\":{\"v\":\"500px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"-10px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-100px\",\"e\":true},\"n\":{\"v\":\"65px\",\"e\":true},\"t\":{\"v\":\"-160px\",\"e\":true},\"m\":{\"v\":\"-50px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":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\":\"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\":\"power4.out\",\"speed\":2500,\"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\":\"power4.out\",\"speed\":2500,\"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\":\"nothing\",\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"style\":\"Maple-Small-Text\",\"color\":{\"d\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(68, 68, 68, 1)\"},\"t\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(68, 68, 68, 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\"]}},\"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\":\"Julius Sans One\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"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\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(68, 68, 68, 1)\"},\"t\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"subtype\":\"roundbutton\",\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":false,\"blinking_speed\":\"500\",\"cursor_type\":\"one\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"\",\"looped\":false,\"newline_delay\":\"1000\",\"sequenced\":false,\"speed\":\"30\",\"start_delay\":\"1000\",\"word_delay\":\"off\"}},\"text\":\"ABOUT US\",\"alias\":\"ABOUT US\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"660px\",\"e\":true},\"n\":{\"v\":\"550px\",\"e\":true},\"t\":{\"v\":\"-100px\",\"e\":true},\"m\":{\"v\":\"-90px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"240px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"75px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":500},{\"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\":\"power4.out\",\"speed\":2500,\"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\":\"power4.out\",\"speed\":2500,\"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\":\"nothing\",\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(16, 16, 16, 1)\"},\"t\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 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\"]}},\"padding\":{\"d\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]},\"t\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]},\"m\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Arial, Helvetica, sans-serif\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(16, 16, 16, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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(16, 16, 16, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(16, 16, 16, 1)\"},\"t\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(242, 242, 242, 1)\",\"backgroundColor\":\"rgba(16, 16, 16, 1)\",\"borderColor\":\"rgba(16, 16, 16, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"150\",\"ease\":\"power2.inOut\",\"svg\":{\"color\":\"rgba(242, 242, 242, 1)\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"scroll_under\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":2,\"scrollunder_offset\":\"-80px\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\",\"link_follow\":\"\"}],\"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;\\nletter-spacing:5px;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"6\":{\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":false,\"blinking_speed\":\"500\",\"cursor_type\":\"one\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"\",\"looped\":false,\"newline_delay\":\"1000\",\"sequenced\":false,\"speed\":\"30\",\"start_delay\":\"1000\",\"word_delay\":\"off\"}},\"text\":\"or\",\"alias\":\"OR TEXT\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"e\":true},\"m\":{\"v\":\"75px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":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\":\"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\":\"power4.out\",\"speed\":2500,\"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\":\"power4.out\",\"speed\":2500,\"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\":\"nothing\",\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(130, 130, 130, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(130, 130, 130, 1)\"},\"t\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(68, 68, 68, 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\"]}},\"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\":\"Georgia, serif\",\"fontStyle\":true,\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"textAlign\":{\"d\":{\"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\":{\"v\":\"rgba(130, 130, 130, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(130, 130, 130, 1)\"},\"t\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(68, 68, 68, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"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\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"subtype\":\"roundbutton\",\"addOns\":{\"revslider-typewriter-addon\":{\"enable\":false,\"blinking_speed\":\"500\",\"cursor_type\":\"one\",\"blinking\":true,\"delays\":\"1%7C100\",\"deletion_delay\":\"1000\",\"deletion_speed\":\"20\",\"hide_cursor\":false,\"linebreak_delay\":\"60\",\"lines\":\"\",\"looped\":false,\"newline_delay\":\"1000\",\"sequenced\":false,\"speed\":\"30\",\"start_delay\":\"1000\",\"word_delay\":\"off\"}},\"text\":\"CONTACT\",\"alias\":\"CONTACT\",\"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\":\"660px\",\"e\":true},\"n\":{\"v\":\"550px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"80px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"240px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"75px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"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\":500},{\"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\":\"power4.out\",\"speed\":2500,\"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\":\"power4.out\",\"speed\":2500,\"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\":\"nothing\",\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"t\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 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\"]}},\"padding\":{\"d\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]},\"t\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]},\"m\":{\"v\":[\"0px\",\"30px\",\"0px\",\"30px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Arial, Helvetica, sans-serif\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"15px\",\"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}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(16, 16, 16, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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(16, 16, 16, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"t\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(16, 16, 16, 1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(242, 242, 242, 1)\",\"backgroundColor\":\"rgba(16, 16, 16, 1)\",\"borderColor\":\"rgba(16, 16, 16, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"150\",\"ease\":\"power2.inOut\",\"svg\":{\"color\":\"rgba(242, 242, 242, 1)\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"scroll_under\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":2,\"scrollunder_offset\":\"-80px\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\",\"link_follow\":\"\"}],\"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;\\nletter-spacing:5px;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(4, 3, 1, '{\"title\":\"Focus\",\"bg\":{\"type\":\"image\",\"color\":\"#110d00\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/432423.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\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}', '{\"7\":{\"text\":\"Image 7\",\"alias\":\"PENCIL1\",\"uid\":7,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_pencil3.png\",\"imageId\":85},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\",\"e\":true},\"t\":{\"v\":\"450px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\",\"e\":true},\"t\":{\"v\":\"188px\",\"e\":true},\"m\":{\"v\":\"125px\",\"e\":true}},\"originalWidth\":600,\"originalHeight\":250,\"aspectRatio\":{\"d\":{\"v\":2.4},\"n\":{\"v\":2.4},\"t\":{\"v\":2.4},\"m\":{\"v\":2.4}}},\"position\":{\"x\":{\"d\":{\"v\":\"763px\",\"e\":true},\"n\":{\"v\":\"708px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"291px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"634px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"668px\",\"e\":true},\"m\":{\"v\":\"395px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":5},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":950},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-200px\"},\"n\":{\"v\":\"-200px\"},\"t\":{\"v\":\"-200px\"},\"m\":{\"v\":\"-200px\"}},\"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\":\"-45deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":950},\"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\":2000,\"start\":950},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"2px\",\"yr\":\"2px\"},\"frame_999\":{\"xr\":\"2px\",\"yr\":\"2px\"},\"speed\":6000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"2\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"BACK SQUARE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"400px\",\"e\":true},\"m\":{\"v\":\"250px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"560px\",\"e\":true},\"n\":{\"v\":\"460px\",\"e\":true},\"t\":{\"v\":\"460px\",\"e\":true},\"m\":{\"v\":\"400px\",\"e\":true}},\"originalWidth\":\"480px\",\"originalHeight\":\"560px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9700}],\"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\":\"0.8\",\"scaleY\":\"0.8\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":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\":\"back.out\",\"speed\":1000,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"1\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\",\"e\":true},\"t\":{\"v\":\"100\",\"e\":true},\"m\":{\"v\":\"100\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(255,255,255,0.35)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"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\":\"rgba(255,255,255,1)\",\"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\"},\"customCSS\":\"filter:blur(5px);\\n-webkit-filter:blur(5px);\\n-moz-filter:blur(5px);\\n-o-filter:blur(5px);\\n-ms-filter:blur(5px);\\n\",\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"Image 1\",\"alias\":\"GUY\",\"uid\":1,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/guy_transparent.png\",\"imageId\":86},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500px\",\"e\":true},\"m\":{\"v\":\"400\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"833\",\"e\":true},\"t\":{\"v\":\"833px\",\"e\":true},\"m\":{\"v\":\"667\",\"e\":true}},\"originalWidth\":600,\"originalHeight\":1000,\"aspectRatio\":{\"d\":{\"v\":0.6},\"n\":{\"v\":0.6},\"t\":{\"v\":0.6},\"m\":{\"v\":0.6}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-200px\",\"e\":true},\"n\":{\"v\":\"-180px\",\"e\":true},\"t\":{\"v\":\"-90px\",\"e\":true},\"m\":{\"v\":\"-90px\",\"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\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9700}],\"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\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":800,\"start\":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\":\"back.out\",\"speed\":800,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"2\":{\"text\":\" \",\"alias\":\"FRONT SQUARE\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"780px\",\"e\":true},\"n\":{\"v\":\"700px\",\"e\":true},\"t\":{\"v\":\"640px\",\"e\":true},\"m\":{\"v\":\"400px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"680px\",\"e\":true},\"t\":{\"v\":\"680px\",\"e\":true},\"m\":{\"v\":\"600px\",\"e\":true}},\"originalWidth\":\"780px\",\"originalHeight\":\"800px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\",\"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},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9700}],\"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\":\"0.8\",\"scaleY\":\"0.8\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":1100},\"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\":\"back.out\",\"speed\":1000,\"start\":1100},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\",\"e\":true},\"t\":{\"v\":\"100\",\"e\":true},\"m\":{\"v\":\"100\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(255,255,255,0.35)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"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\":\"rgba(255,255,255,1)\",\"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\"},\"5\":{\"text\":\"Image 5\",\"alias\":\"PENCIL2\",\"uid\":5,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_pencil1.png\",\"imageId\":87},\"size\":{\"width\":{\"d\":{\"v\":\"684px\",\"e\":true},\"n\":{\"v\":\"684px\",\"e\":true},\"t\":{\"v\":\"450px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"404px\",\"e\":true},\"n\":{\"v\":\"404px\",\"e\":true},\"t\":{\"v\":\"266px\",\"e\":true},\"m\":{\"v\":\"177px\",\"e\":true}},\"originalWidth\":684,\"originalHeight\":404,\"aspectRatio\":{\"d\":{\"v\":1.693069306930693},\"n\":{\"v\":1.693069306930693},\"t\":{\"v\":1.693069306930693},\"m\":{\"v\":1.693069306930693}}},\"position\":{\"x\":{\"d\":{\"v\":\"832px\",\"e\":true},\"n\":{\"v\":\"707px\",\"e\":true},\"t\":{\"v\":\"567px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-22px\",\"e\":true},\"n\":{\"v\":\"33px\",\"e\":true},\"t\":{\"v\":\"107px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":4},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1250},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"35deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":1250},\"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\":2000,\"start\":1250},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"4px\",\"yr\":\"4px\"},\"frame_999\":{\"xr\":\"4px\",\"yr\":\"4px\"},\"speed\":5000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"7\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"6\":{\"text\":\"Image 6\",\"alias\":\"ERASER1\",\"uid\":6,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_eraser2.png\",\"imageId\":88},\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\",\"e\":true},\"t\":{\"v\":\"180px\",\"e\":true},\"m\":{\"v\":\"120px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"216px\",\"e\":true},\"m\":{\"v\":\"144px\",\"e\":true}},\"originalWidth\":250,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":0.8333333333333334},\"n\":{\"v\":0.8333333333333334},\"t\":{\"v\":0.8333333333333334},\"m\":{\"v\":0.8333333333333334}}},\"position\":{\"x\":{\"d\":{\"v\":\"1001px\",\"e\":true},\"n\":{\"v\":\"831px\",\"e\":true},\"t\":{\"v\":\"658px\",\"e\":true},\"m\":{\"v\":\"379px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"357px\",\"e\":true},\"n\":{\"v\":\"379px\",\"e\":true},\"t\":{\"v\":\"360px\",\"e\":true},\"m\":{\"v\":\"220px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"90deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":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\":\"power4.out\",\"speed\":2000,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"3px\",\"yr\":\"3px\"},\"frame_999\":{\"xr\":\"3px\",\"yr\":\"3px\"},\"speed\":3000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"3\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"8\":{\"text\":\"Image 8\",\"alias\":\"PENCIL3\",\"uid\":8,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_pencil2.png\",\"imageId\":89},\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"120px\",\"e\":true},\"m\":{\"v\":\"80px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"170px\",\"e\":true},\"n\":{\"v\":\"170px\",\"e\":true},\"t\":{\"v\":\"136px\",\"e\":true},\"m\":{\"v\":\"91px\",\"e\":true}},\"originalWidth\":150,\"originalHeight\":170,\"aspectRatio\":{\"d\":{\"v\":0.8823529411764706},\"n\":{\"v\":0.8823529411764706},\"t\":{\"v\":0.8823529411764706},\"m\":{\"v\":0.8823529411764706}}},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"-6px\",\"e\":true},\"t\":{\"v\":\"-11px\",\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"311px\",\"e\":true},\"n\":{\"v\":\"276px\",\"e\":true},\"t\":{\"v\":\"321px\",\"e\":true},\"m\":{\"v\":\"283px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"-45deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":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\":\"power4.out\",\"speed\":2000,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"11\":{\"text\":\"Image 11\",\"alias\":\"TRIANGLE\",\"uid\":11,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_triangle.png\",\"imageId\":90},\"size\":{\"width\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"300px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\",\"e\":true},\"t\":{\"v\":\"375px\",\"e\":true},\"m\":{\"v\":\"250px\",\"e\":true}},\"originalWidth\":400,\"originalHeight\":500,\"aspectRatio\":{\"d\":{\"v\":0.8},\"n\":{\"v\":0.8},\"t\":{\"v\":0.8},\"m\":{\"v\":0.8}}},\"position\":{\"x\":{\"d\":{\"v\":\"-219px\",\"e\":true},\"n\":{\"v\":\"-236px\",\"e\":true},\"t\":{\"v\":\"-99px\",\"e\":true},\"m\":{\"v\":\"-86px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"494px\",\"e\":true},\"n\":{\"v\":\"414px\",\"e\":true},\"t\":{\"v\":\"630px\",\"e\":true},\"m\":{\"v\":\"501px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1450},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"-45deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":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\":\"power4.out\",\"speed\":2000,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"7px\",\"yr\":\"7px\"},\"frame_999\":{\"xr\":\"7px\",\"yr\":\"7px\"},\"speed\":6000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"9\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"12\":{\"text\":\"FOCUS<br\\/>\\nIS RELATIVE\",\"alias\":\"TITLE\",\"uid\":12,\"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\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\",\"e\":true},\"t\":{\"v\":\"90px\",\"e\":true},\"m\":{\"v\":\"90px\",\"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\":13},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1550},{\"id\":\"frame_999\",\"start\":9700}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1550},\"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\":1000,\"start\":1550},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"7\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\",\"e\":true},\"m\":{\"v\":\"800\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"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},\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"customCSS\":\"letter-spacing:-7px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"13\":{\"text\":\"CHANGE YOUR<br\\/>\\nPERSPECTIVE\",\"alias\":\"SUBTITLE\",\"uid\":13,\"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},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"257px\",\"e\":true},\"n\":{\"v\":\"222px\",\"e\":true},\"t\":{\"v\":\"222px\"},\"m\":{\"v\":\"181px\",\"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\":14},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1650},{\"id\":\"frame_999\",\"start\":9700}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1650},\"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\":1000,\"start\":1650},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"6\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.50)\"},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\"},\"m\":{\"v\":\"800\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"25px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.50)\"},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"customCSS\":\"letter-spacing:-2px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"14\":{\"text\":\" \",\"alias\":\"SCROLL DOWN\",\"uid\":14,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_expand_more_24px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgb(255, 255, 255);\\\"><path d=\\\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"size\":{\"width\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\",\"e\":true}},\"originalWidth\":\"100px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"340px\",\"e\":true},\"n\":{\"v\":\"299px\",\"e\":true},\"t\":{\"v\":\"299px\"},\"m\":{\"v\":\"249px\",\"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\":15},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1750},{\"id\":\"frame_999\",\"start\":9700}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1750},\"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\":1000,\"start\":1750},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"x\":0,\"y\":-5},\"frame_999\":{\"x\":0,\"y\":5},\"speed\":2000,\"ease\":\"power1.inOut\"}},\"effects\":{\"parallax\":\"5\"},\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"scaleX\":\"1.4\",\"scaleY\":\"1.4\",\"speed\":\"200\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"scroll_under\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":5,\"scrollunder_offset\":\"-80px\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"hor_lines\":[\"428px\"],\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(5, 3, 2, '{\"title\":\"Perspective\",\"bg\":{\"type\":\"solid\",\"color\":\"#cccccc\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}', '{\"7\":{\"text\":\"Image 7\",\"alias\":\"PENCIL1\",\"uid\":7,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_pencil3.png\",\"imageId\":85},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\",\"e\":true},\"t\":{\"v\":\"450px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\",\"e\":true},\"t\":{\"v\":\"188px\",\"e\":true},\"m\":{\"v\":\"125px\",\"e\":true}},\"originalWidth\":600,\"originalHeight\":250,\"aspectRatio\":{\"d\":{\"v\":2.4},\"n\":{\"v\":2.4},\"t\":{\"v\":2.4},\"m\":{\"v\":2.4}}},\"position\":{\"x\":{\"d\":{\"v\":\"763px\",\"e\":true},\"n\":{\"v\":\"708px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"291px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"634px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"668px\",\"e\":true},\"m\":{\"v\":\"395px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":5},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":950},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-200px\"},\"n\":{\"v\":\"-200px\"},\"t\":{\"v\":\"-200px\"},\"m\":{\"v\":\"-200px\"}},\"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\":\"-45deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":950},\"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\":2000,\"start\":950},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"2px\",\"yr\":\"2px\"},\"frame_999\":{\"xr\":\"2px\",\"yr\":\"2px\"},\"speed\":6000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"2\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"9\":{\"text\":\"Image 9\",\"alias\":\"GLASSES\",\"uid\":9,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_glasses.png\",\"imageId\":91},\"size\":{\"width\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\",\"e\":true},\"t\":{\"v\":\"375\",\"e\":true},\"m\":{\"v\":\"250px\",\"e\":true}},\"originalWidth\":400,\"originalHeight\":500,\"aspectRatio\":{\"d\":{\"v\":0.8},\"n\":{\"v\":0.8},\"t\":{\"v\":0.8},\"m\":{\"v\":0.8}}},\"position\":{\"x\":{\"d\":{\"v\":\"-6px\",\"e\":true},\"n\":{\"v\":\"-26px\",\"e\":true},\"t\":{\"v\":\"-26px\",\"e\":true},\"m\":{\"v\":\"-56px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"389px\",\"e\":true},\"n\":{\"v\":\"389px\",\"e\":true},\"t\":{\"v\":\"389px\",\"e\":true},\"m\":{\"v\":\"338px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"200px\"},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"200px\"}},\"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\":\"45deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"3px\",\"yr\":\"3px\"},\"frame_999\":{\"xr\":\"3px\",\"yr\":\"3px\"},\"speed\":7000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"2\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"BACK SQUARE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"400px\",\"e\":true},\"m\":{\"v\":\"250px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"560px\",\"e\":true},\"n\":{\"v\":\"460px\",\"e\":true},\"t\":{\"v\":\"460px\",\"e\":true},\"m\":{\"v\":\"400px\",\"e\":true}},\"originalWidth\":\"480px\",\"originalHeight\":\"560px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9700}],\"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\":\"0.8\",\"scaleY\":\"0.8\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":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\":\"back.out\",\"speed\":1000,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"1\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\",\"e\":true},\"t\":{\"v\":\"100\",\"e\":true},\"m\":{\"v\":\"100\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(255,255,255,0.35)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"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\":\"rgba(255,255,255,1)\",\"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\"},\"customCSS\":\"filter:blur(5px);\\n-webkit-filter:blur(5px);\\n-moz-filter:blur(5px);\\n-o-filter:blur(5px);\\n-ms-filter:blur(5px);\\n\",\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"Image 1\",\"alias\":\"GUY\",\"uid\":1,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/girl_transparent.png\",\"imageId\":92},\"size\":{\"width\":{\"d\":{\"v\":\"1000\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"700px\",\"e\":true},\"m\":{\"v\":\"600px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1000\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"700px\",\"e\":true},\"m\":{\"v\":\"600px\",\"e\":true}},\"originalWidth\":1000,\"originalHeight\":1000,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-200px\",\"e\":true},\"n\":{\"v\":\"-140px\",\"e\":true},\"t\":{\"v\":\"-30px\",\"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\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9700}],\"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\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":800,\"start\":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\":\"back.out\",\"speed\":800,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"2\":{\"text\":\" \",\"alias\":\"FRONT SQUARE\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"780px\",\"e\":true},\"n\":{\"v\":\"700px\",\"e\":true},\"t\":{\"v\":\"640px\",\"e\":true},\"m\":{\"v\":\"400px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"680px\",\"e\":true},\"t\":{\"v\":\"680px\",\"e\":true},\"m\":{\"v\":\"600px\",\"e\":true}},\"originalWidth\":\"780px\",\"originalHeight\":\"800px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\",\"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},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":4},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9700}],\"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\":\"0.8\",\"scaleY\":\"0.8\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":1100},\"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\":\"back.out\",\"speed\":1000,\"start\":1100},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\",\"e\":true},\"t\":{\"v\":\"100\",\"e\":true},\"m\":{\"v\":\"100\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(255,255,255,0.35)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"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\":\"rgba(255,255,255,1)\",\"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\":\"Image 4\",\"alias\":\"DECO BALL\",\"uid\":4,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/revslider\\/homev2\\/relative_ball_grey.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"300px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"300px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"originalWidth\":400,\"originalHeight\":400,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"543px\",\"e\":true},\"n\":{\"v\":\"432px\",\"e\":true},\"t\":{\"v\":\"302px\",\"e\":true},\"m\":{\"v\":\"182px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"31px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"174px\",\"e\":true},\"m\":{\"v\":\"136px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"45deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":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\":\"power4.out\",\"speed\":2000,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"6px\",\"yr\":\"6px\"},\"frame_999\":{\"xr\":\"6px\",\"yr\":\"6px\"},\"speed\":5000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"8\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"5\":{\"text\":\"Image 5\",\"alias\":\"PENCIL2\",\"uid\":5,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_pencil1.png\",\"imageId\":87},\"size\":{\"width\":{\"d\":{\"v\":\"684px\",\"e\":true},\"n\":{\"v\":\"684px\",\"e\":true},\"t\":{\"v\":\"450px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"404px\",\"e\":true},\"n\":{\"v\":\"404px\",\"e\":true},\"t\":{\"v\":\"266px\",\"e\":true},\"m\":{\"v\":\"177px\",\"e\":true}},\"originalWidth\":684,\"originalHeight\":404,\"aspectRatio\":{\"d\":{\"v\":1.693069306930693},\"n\":{\"v\":1.693069306930693},\"t\":{\"v\":1.693069306930693},\"m\":{\"v\":1.693069306930693}}},\"position\":{\"x\":{\"d\":{\"v\":\"832px\",\"e\":true},\"n\":{\"v\":\"707px\",\"e\":true},\"t\":{\"v\":\"567px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-22px\",\"e\":true},\"n\":{\"v\":\"33px\",\"e\":true},\"t\":{\"v\":\"107px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1250},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"35deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":1250},\"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\":2000,\"start\":1250},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"4px\",\"yr\":\"4px\"},\"frame_999\":{\"xr\":\"4px\",\"yr\":\"4px\"},\"speed\":5000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"7\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"6\":{\"text\":\"Image 6\",\"alias\":\"ERASER1\",\"uid\":6,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_eraser2.png\",\"imageId\":88},\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\",\"e\":true},\"t\":{\"v\":\"180px\",\"e\":true},\"m\":{\"v\":\"120px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"216px\",\"e\":true},\"m\":{\"v\":\"144px\",\"e\":true}},\"originalWidth\":250,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":0.8333333333333334},\"n\":{\"v\":0.8333333333333334},\"t\":{\"v\":0.8333333333333334},\"m\":{\"v\":0.8333333333333334}}},\"position\":{\"x\":{\"d\":{\"v\":\"1001px\",\"e\":true},\"n\":{\"v\":\"831px\",\"e\":true},\"t\":{\"v\":\"658px\",\"e\":true},\"m\":{\"v\":\"379px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"357px\",\"e\":true},\"n\":{\"v\":\"379px\",\"e\":true},\"t\":{\"v\":\"360px\",\"e\":true},\"m\":{\"v\":\"220px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"90deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":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\":\"power4.out\",\"speed\":2000,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"3px\",\"yr\":\"3px\"},\"frame_999\":{\"xr\":\"3px\",\"yr\":\"3px\"},\"speed\":3000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"3\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"8\":{\"text\":\"Image 8\",\"alias\":\"PENCIL3\",\"uid\":8,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_pencil2.png\",\"imageId\":89},\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"120px\",\"e\":true},\"m\":{\"v\":\"80px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"170px\",\"e\":true},\"n\":{\"v\":\"170px\",\"e\":true},\"t\":{\"v\":\"136px\",\"e\":true},\"m\":{\"v\":\"91px\",\"e\":true}},\"originalWidth\":150,\"originalHeight\":170,\"aspectRatio\":{\"d\":{\"v\":0.8823529411764706},\"n\":{\"v\":0.8823529411764706},\"t\":{\"v\":0.8823529411764706},\"m\":{\"v\":0.8823529411764706}}},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"-6px\",\"e\":true},\"t\":{\"v\":\"-11px\",\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"311px\",\"e\":true},\"n\":{\"v\":\"276px\",\"e\":true},\"t\":{\"v\":\"321px\",\"e\":true},\"m\":{\"v\":\"283px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"-45deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":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\":\"power4.out\",\"speed\":2000,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"10\":{\"text\":\"Image 10\",\"alias\":\"ERASER2\",\"uid\":10,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/revslider\\/homev2\\/relative_eraser1.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"340px\",\"e\":true},\"n\":{\"v\":\"340px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"150px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"180px\",\"e\":true},\"n\":{\"v\":\"180px\",\"e\":true},\"t\":{\"v\":\"132px\",\"e\":true},\"m\":{\"v\":\"79px\",\"e\":true}},\"originalWidth\":340,\"aspectRatio\":{\"d\":{\"v\":1.8888888888888888},\"n\":{\"v\":1.8888888888888888},\"t\":{\"v\":1.8888888888888888},\"m\":{\"v\":1.8888888888888888}}},\"position\":{\"x\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"-30px\",\"e\":true},\"t\":{\"v\":\"-33px\",\"e\":true},\"m\":{\"v\":\"-21px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"106px\",\"e\":true},\"n\":{\"v\":\"73px\",\"e\":true},\"t\":{\"v\":\"138px\",\"e\":true},\"m\":{\"v\":\"109px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1350},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"90deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":1350},\"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\":2000,\"start\":1350},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"5px\",\"yr\":\"5px\"},\"frame_999\":{\"xr\":\"5px\",\"yr\":\"5px\"},\"speed\":4000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"8\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"11\":{\"text\":\"Image 11\",\"alias\":\"TRIANGLE\",\"uid\":11,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/relative_triangle.png\",\"imageId\":90},\"size\":{\"width\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"300px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\",\"e\":true},\"t\":{\"v\":\"375px\",\"e\":true},\"m\":{\"v\":\"250px\",\"e\":true}},\"originalWidth\":400,\"originalHeight\":500,\"aspectRatio\":{\"d\":{\"v\":0.8},\"n\":{\"v\":0.8},\"t\":{\"v\":0.8},\"m\":{\"v\":0.8}}},\"position\":{\"x\":{\"d\":{\"v\":\"-219px\",\"e\":true},\"n\":{\"v\":\"-236px\",\"e\":true},\"t\":{\"v\":\"-99px\",\"e\":true},\"m\":{\"v\":\"-86px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"494px\",\"e\":true},\"n\":{\"v\":\"414px\",\"e\":true},\"t\":{\"v\":\"630px\",\"e\":true},\"m\":{\"v\":\"501px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":15},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1450},{\"id\":\"frame_999\",\"start\":9700}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"-45deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":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\":\"power4.out\",\"speed\":2000,\"start\":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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"7px\",\"yr\":\"7px\"},\"frame_999\":{\"xr\":\"7px\",\"yr\":\"7px\"},\"speed\":6000,\"originX\":50,\"originY\":50}},\"effects\":{\"parallax\":\"9\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"12\":{\"text\":\"OHHH<br\\/>\\nYEAH!\",\"alias\":\"TITLE\",\"uid\":12,\"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\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\",\"e\":true},\"t\":{\"v\":\"90px\",\"e\":true},\"m\":{\"v\":\"90px\",\"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\":16},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1550},{\"id\":\"frame_999\",\"start\":9700}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1550},\"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\":1000,\"start\":1550},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"7\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\",\"e\":true},\"m\":{\"v\":\"800\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"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},\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"customCSS\":\"letter-spacing:-7px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"13\":{\"text\":\"LOVE THIS<br\\/>SLIDER?\",\"alias\":\"SUBTITLE\",\"uid\":13,\"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},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"257px\",\"e\":true},\"n\":{\"v\":\"222px\",\"e\":true},\"t\":{\"v\":\"222px\"},\"m\":{\"v\":\"181px\",\"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\":17},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1650},{\"id\":\"frame_999\",\"start\":9700}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1650},\"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\":1000,\"start\":1650},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"6\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.50)\"},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"800\",\"e\":true},\"n\":{\"v\":\"800\",\"e\":true},\"t\":{\"v\":\"800\"},\"m\":{\"v\":\"800\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"25px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.50)\"},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"customCSS\":\"letter-spacing:-2px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"14\":{\"text\":\" \",\"alias\":\"SCROLL DOWN\",\"uid\":14,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_expand_more_24px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgb(255, 255, 255);\\\"><path d=\\\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"size\":{\"width\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\",\"e\":true}},\"originalWidth\":\"100px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"340px\",\"e\":true},\"n\":{\"v\":\"299px\",\"e\":true},\"t\":{\"v\":\"299px\"},\"m\":{\"v\":\"249px\",\"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\":18},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1750},{\"id\":\"frame_999\",\"start\":9700}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1750},\"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\":1000,\"start\":1750},\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":700,\"start\":9000,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"x\":0,\"y\":-5},\"frame_999\":{\"x\":0,\"y\":5},\"speed\":2000,\"ease\":\"power1.inOut\"}},\"effects\":{\"parallax\":\"5\"},\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"scaleX\":\"1.4\",\"scaleY\":\"1.4\",\"speed\":\"200\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"scroll_under\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":4,\"scrollunder_offset\":\"-80px\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(6, 4, 1, '{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/serv1.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\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}', '[]', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(7, 4, 2, '{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/service-3.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\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}', '[]', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(8, 5, 1, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/Sydney-Photo-by-Engaging-Futures-scaled.jpg\",\"imageId\":45,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"}},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"cube\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"effects\":{\"parallax\":\"3\"},\"nav\":{\"arrows\":{\"presets\":{\"height\":\"50\",\"height-def\":false,\"font-size\":\"40\",\"font-size-def\":false,\"background\":\"rgba(255,255,255,0)\",\"background-def\":false,\"width\":\"50\",\"width-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"16\",\"bullet-size-def\":false,\"bullet-color\":\"#ffffff\",\"bullet-color-def\":false,\"border\":\"2\",\"border-def\":false,\"bullet-hover\":\"rgba(0,0,0,0.21)\",\"bullet-hover-def\":false}}}}', '{\"1\":{\"text\":\"ENGAGING<br\\/>\\nFUTURES\",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"720px\",\"e\":true},\"n\":{\"v\":\"640\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"720px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-66px\",\"e\":true},\"n\":{\"v\":\"-70px\",\"e\":true},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-100px\",\"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},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":500,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"4\"},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"10px\"},\"n\":{\"v\":\"10px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"10px\"}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"2\":{\"text\":\"We are Engaging Futures and you are invited on our next journey! Whenever we shape the future before the future shapes us, we are Engaging Futures! Let us show you how to create your preferred futures of people, cities, livelihoods and our environment.\",\"alias\":\"Subtitle\",\"uid\":2,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"785px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"720px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"23px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"57px\",\"e\":true},\"t\":{\"v\":\"39px\",\"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},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"10px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"10px\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":700,\"endWithSlide\":false},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":700,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"4\"},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}'),
(9, 5, 2, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/brisbane-local-marketing-nHiPAtsZcCo-unsplash-scaled.jpg\",\"imageId\":386,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"}},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"cube\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"effects\":{\"parallax\":\"3\"},\"nav\":{\"arrows\":{\"presets\":{\"height\":\"50\",\"height-def\":false,\"font-size\":\"40\",\"font-size-def\":false,\"background\":\"rgba(255,255,255,0)\",\"background-def\":false,\"width\":\"50\",\"width-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"16\",\"bullet-size-def\":false,\"bullet-color\":\"#ffffff\",\"bullet-color-def\":false,\"border\":\"2\",\"border-def\":false,\"bullet-hover\":\"rgba(0,0,0,0.21)\",\"bullet-hover-def\":false}}}}', '{\"1\":{\"text\":\"<BR\\/>\\nLET\'S GET UP EARLY TOGETHER\",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1205px\",\"e\":true},\"n\":{\"v\":\"640px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"720px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\",\"e\":true},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-100px\",\"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},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":500,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"4\"},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"10px\"},\"n\":{\"v\":\"10px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"10px\"}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"2\":{\"text\":\"Ever had that feeling of waking up early? Engaging Futures has too. Let\'s get up early together. We can help you to create your unique futures and keep you ahead of the times.\",\"alias\":\"Subtitle\",\"uid\":2,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"763px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"720px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"44px\",\"e\":true},\"n\":{\"v\":\"57px\",\"e\":true},\"t\":{\"v\":\"39px\",\"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},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"10px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"10px\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":700,\"endWithSlide\":false},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":700,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"4\"},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}'),
(10, 5, 3, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/denise-jans-gmtAa0Q5MI-unsplash-scaled.jpg\",\"imageId\":384,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"}},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"cube\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"effects\":{\"parallax\":\"3\"},\"nav\":{\"arrows\":{\"presets\":{\"height\":\"50\",\"height-def\":false,\"font-size\":\"40\",\"font-size-def\":false,\"background\":\"rgba(255,255,255,0)\",\"background-def\":false,\"width\":\"50\",\"width-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"16\",\"bullet-size-def\":false,\"bullet-color\":\"#ffffff\",\"bullet-color-def\":false,\"border\":\"2\",\"border-def\":false,\"bullet-hover\":\"rgba(0,0,0,0.21)\",\"bullet-hover-def\":false}}}}', '{\"1\":{\"text\":\"<BR\\/>\\nCOMPLICITY OR MULTIPLICITY: \\nCREATE YOUR PREFERRED FUTURE\",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1329px\",\"e\":true},\"n\":{\"v\":\"640px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"720px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\",\"e\":true},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-100px\",\"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},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":500,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"4\"},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"10px\"},\"n\":{\"v\":\"10px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"10px\"}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"2\":{\"text\":\"If you are excited by shaping futures before they shape your organisation, join Engaging Futures for our next Futures Course! We\'ll connect you to like-minded colleagues and help you create new partnerships and preferred futures. \",\"alias\":\"Subtitle\",\"uid\":2,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"720px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"720px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"73px\",\"e\":true},\"n\":{\"v\":\"57px\",\"e\":true},\"t\":{\"v\":\"39px\",\"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},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"10px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"10px\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":700,\"endWithSlide\":false},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":700,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"4\"},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}'),
(11, 5, 4, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/jordan-evtWtv0i-6E-unsplash-scaled.jpg\",\"imageId\":370,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"}},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"cube\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"effects\":{\"parallax\":\"3\"},\"nav\":{\"arrows\":{\"presets\":{\"height\":\"50\",\"height-def\":false,\"font-size\":\"40\",\"font-size-def\":false,\"background\":\"rgba(255,255,255,0)\",\"background-def\":false,\"width\":\"50\",\"width-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"16\",\"bullet-size-def\":false,\"bullet-color\":\"#ffffff\",\"bullet-color-def\":false,\"border\":\"2\",\"border-def\":false,\"bullet-hover\":\"rgba(0,0,0,0.21)\",\"bullet-hover-def\":false}}}}', '{\"1\":{\"text\":\"CITY OF GOLD COAST<br\\/>\\n\",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"841px\",\"e\":true},\"n\":{\"v\":\"640px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"720px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-364px\",\"e\":true},\"n\":{\"v\":\"-70px\",\"e\":true},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-100px\",\"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},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":500,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"4\"},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"10px\"},\"n\":{\"v\":\"10px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"10px\"}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"2\":{\"text\":\"Ever wanted to create your preferred future in a city that meets the ocean? What a lifestyle city! Join us on The Gold Coast, for our Futures Thinking and Strategy Transformation Course, this February, 2021.\",\"alias\":\"Subtitle\",\"uid\":2,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"720px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"720px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"46px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-287px\",\"e\":true},\"n\":{\"v\":\"57px\",\"e\":true},\"t\":{\"v\":\"39px\",\"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},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"10px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"10px\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":700,\"endWithSlide\":false},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":700,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"6\"},\"words\":{\"delay\":\"6\"},\"lines\":{\"delay\":\"6\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(13, 6, 1, '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":true,\"direction\":\"horizontal\",\"delay\":\"500\",\"time\":\"750\",\"easing\":\"power2.inOut\",\"animateOut\":\"fade\",\"moveTo\":{\"d\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"n\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"t\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"m\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"}},\"teaser\":{\"set\":\"infinite\",\"type\":\"repel\",\"distance\":\"5\",\"speed\":\"1500\",\"easing\":\"ease-in-out\",\"delay\":\"750\"},\"shift\":{\"set\":true,\"offset\":\"10\",\"speed\":\"300\",\"easing\":\"ease\",\"delay\":\"250\"},\"bg\":{\"type\":\"solid\",\"color\":\"{&type&:&linear&,&angle&:&270&,&colors&:[{&r&:238,&g&:205,&b&:163,&a&:&1&,&position&:0,&align&:&top&},{&r&:238,&g&:205,&b&:163,&a&:&1&,&position&:0,&align&:&bottom&},{&r&:239,&g&:98,&b&:159,&a&:&1&,&position&:100,&align&:&bottom&},{&r&:239,&g&:98,&b&:159,&a&:&1&,&position&:100,&align&:&top&}]}\",\"externalSrc\":\"\",\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"image\":\"\\/2017\\/05\\/day.jpg\",\"imageId\":\"342\",\"imageSourceType\":\"full\",\"mpeg\":\"\",\"vimeo\":\"\",\"youtube\":\"\",\"width\":\"\",\"height\":\"\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"dottedOverlay\":\"none\",\"startAt\":\"\",\"endAt\":\"\",\"forceCover\":true,\"forceRewind\":true,\"loop\":\"none\",\"mute\":true,\"nextSlideAtEnd\":false,\"ratio\":\"16:9\",\"speed\":\"1\",\"volume\":\"\"},\"videoId\":\"\"}}},\"title\":\"Slide\",\"bg\":{\"type\":\"solid\",\"color\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:203,&g&:186,&b&:204,&a&:&1&,&position&:0,&align&:&top&},{&r&:203,&g&:186,&b&:204,&a&:&1&,&position&:0,&align&:&bottom&},{&r&:36,&g&:57,&b&:73,&a&:&1&,&position&:100,&align&:&bottom&},{&r&:36,&g&:57,&b&:73,&a&:&1&,&position&:100,&align&:&top&}]}\",\"mpeg\":\"http:\\/\\/builder.themepunch.com\\/wp-content\\/uploads\\/2017\\/04\\/Palm_Trees.mp4\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loop\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/beforeafterslider\\/slide1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/beforeafterslider\\/slide1.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"set\":true,\"blurStart\":\"30\",\"duration\":\"5000\",\"ease\":\"power4.out\",\"fitStart\":\"150\"},\"version\":\"6.2.0\"}', '{\"37\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Image 9\",\"alias\":\"MAC\",\"uid\":37,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/object_macscreen_1-2.png\",\"imageId\":105},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"1000px\"},\"m\":{\"v\":\"500px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"1000px\"},\"m\":{\"v\":\"500\",\"e\":true}},\"originalWidth\":2000,\"originalHeight\":2000,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-280px\",\"e\":true},\"n\":{\"v\":\"-280px\"},\"t\":{\"v\":\"-280px\"},\"m\":{\"v\":\"-280px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":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\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":\"-180deg\",\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"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\":{\"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\":{\"visible\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"23\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Image 11\",\"alias\":\"POT\",\"uid\":23,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/object_plant_1.png\",\"imageId\":106},\"size\":{\"width\":{\"d\":{\"v\":\"375px\",\"e\":true},\"n\":{\"v\":\"375px\"},\"t\":{\"v\":\"375px\"},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"375px\",\"e\":true},\"n\":{\"v\":\"375px\"},\"t\":{\"v\":\"375px\"},\"m\":{\"v\":\"200px\",\"e\":true}},\"originalWidth\":1500,\"originalHeight\":1500,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-578px\",\"e\":true},\"n\":{\"v\":\"-578px\"},\"t\":{\"v\":\"-578px\"},\"m\":{\"v\":\"-221px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-344px\",\"e\":true},\"n\":{\"v\":\"-344px\"},\"t\":{\"v\":\"-344px\"},\"m\":{\"v\":\"-194px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":600},{\"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\":\"-500px\"},\"n\":{\"v\":\"-500px\"},\"t\":{\"v\":\"-500px\"},\"m\":{\"v\":\"-500px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"90deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600,\"startRelative\":600},\"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\":2000,\"start\":600,\"startRelative\":600},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6400,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"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\":{\"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\":{\"visible\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"28\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Image 8\",\"alias\":\"KEYBOARD\",\"uid\":28,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/keyboard_apple.png\",\"imageId\":107},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"v\":\"300px\",\"e\":true}},\"originalWidth\":1600,\"originalHeight\":1600,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\"},\"t\":{\"v\":\"-70px\"},\"m\":{\"v\":\"-170px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":700},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-200px\"},\"n\":{\"v\":\"-200px\"},\"t\":{\"v\":\"-200px\"},\"m\":{\"v\":\"-200px\"}},\"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\":\"90deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":700,\"startRelative\":700},\"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\":2000,\"start\":700,\"startRelative\":700},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6300,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"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\":{\"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\":{\"visible\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"22\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Image 10\",\"alias\":\"MOUSE\",\"uid\":22,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/object_macmouse_1.png\",\"imageId\":108},\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"125px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"125px\",\"e\":true}},\"originalWidth\":1000,\"originalHeight\":1000,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"307px\",\"e\":true},\"n\":{\"v\":\"307px\"},\"t\":{\"v\":\"307px\"},\"m\":{\"v\":\"131px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-59px\",\"e\":true},\"n\":{\"v\":\"-59px\"},\"t\":{\"v\":\"-59px\"},\"m\":{\"v\":\"-103px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"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\":800},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"200px\"},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"200px\"}},\"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\":\"-180deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":-20,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"2\"},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"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\":{\"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\":{\"visible\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"35\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Image 11\",\"alias\":\"GLASSES\",\"uid\":35,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/object_glasses_2.png\",\"imageId\":109},\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"125px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"125px\",\"e\":true}},\"originalWidth\":1000,\"originalHeight\":1000,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-296px\",\"e\":true},\"n\":{\"v\":\"-296px\"},\"t\":{\"v\":\"-296px\"},\"m\":{\"v\":\"-149px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-67px\",\"e\":true},\"n\":{\"v\":\"-67px\"},\"t\":{\"v\":\"-67px\"},\"m\":{\"v\":\"-89px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"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\":900},{\"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\":\"200px\"},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"200px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"180deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":900,\"startRelative\":900},\"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\":45,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":900,\"startRelative\":900},\"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\"},\"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}},\"effects\":{\"parallax\":\"2\"},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"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\":{\"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\":{\"visible\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"1\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"NICE\",\"alias\":\"Before Text 1\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"110px\",\"e\":true},\"n\":{\"v\":\"110px\"},\"t\":{\"v\":\"110px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"classes\":\"tp-whiteshadow\",\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":500,\"startRelative\":500},\"chars\":{\"direction\":\"random\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"random\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"random\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":500,\"startRelative\":500},\"chars\":{\"direction\":\"random\",\"delay\":\"10\"},\"words\":{\"direction\":\"random\",\"delay\":\"10\"},\"lines\":{\"direction\":\"random\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6500,\"endWithSlide\":true},\"chars\":{\"direction\":\"random\",\"delay\":\"10\"},\"words\":{\"direction\":\"random\",\"delay\":\"10\"},\"lines\":{\"direction\":\"random\",\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"5\"},\"idle\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\"},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"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\":[\"0px\",\"0px\",\"0px\",\"50px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"50px\"]},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"50px\"]},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"50px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"filter\":{\"blendMode\":\"screen\"},\"svg\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\"},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"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\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"48\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Get the Before \\/ After Add-On for Slider Revolution free\",\"alias\":\"Before Text 2\",\"uid\":48,\"size\":{\"width\":{\"d\":{\"v\":\"960px\",\"e\":true},\"n\":{\"v\":\"960px\"},\"t\":{\"v\":\"960px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"960px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"210px\",\"e\":true},\"n\":{\"v\":\"210px\"},\"t\":{\"v\":\"210px\"},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"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\":600},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":600,\"startRelative\":600},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":600,\"startRelative\":600},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6400,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"5\"},\"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\",\"0px\",\"0px\",\"5px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"5px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"5px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"5px\"],\"e\":true}},\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"13px\"},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"46\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"MAKE A CHOICE\",\"alias\":\"Before Button 1\",\"uid\":46,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"80px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":700,\"startRelative\":700},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":700,\"startRelative\":700},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6300,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"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\",\"40px\",\"0px\",\"45px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"40px\",\"0px\",\"45px\"]},\"t\":{\"v\":[\"0\",\"40px\",\"0px\",\"45px\"]},\"m\":{\"v\":[\"0\",\"40px\",\"0px\",\"45px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\"},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#656565\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"filter\":{\"blendMode\":\"overlay\"},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"200\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"38\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"Image 9\",\"alias\":\"MAC AFTER\",\"uid\":38,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/object_macscreen_2.png\",\"imageId\":110},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"1000px\"},\"m\":{\"v\":\"500px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"1000px\"},\"m\":{\"v\":\"500\",\"e\":true}},\"originalWidth\":2000,\"originalHeight\":2000,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-280px\",\"e\":true},\"n\":{\"v\":\"-280px\"},\"t\":{\"v\":\"-280px\"},\"m\":{\"v\":\"-280px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":13,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2000},{\"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\":\"-180deg\",\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"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\":{\"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\"},\"42\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"Image 10\",\"alias\":\"COFFEE\",\"uid\":42,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/object_coffee_1.png\",\"imageId\":111},\"size\":{\"width\":{\"d\":{\"v\":\"375px\",\"e\":true},\"n\":{\"v\":\"375px\"},\"t\":{\"v\":\"375px\"},\"m\":{\"v\":\"170px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"375px\",\"e\":true},\"n\":{\"v\":\"375px\"},\"t\":{\"v\":\"375px\"},\"m\":{\"v\":\"170px\",\"e\":true}},\"originalWidth\":1500,\"originalHeight\":1500,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"545px\",\"e\":true},\"n\":{\"v\":\"545px\"},\"t\":{\"v\":\"545px\"},\"m\":{\"v\":\"181px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-203px\",\"e\":true},\"n\":{\"v\":\"-203px\"},\"t\":{\"v\":\"-203px\"},\"m\":{\"v\":\"-178px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":14,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2100},{\"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\":\"-500px\"},\"n\":{\"v\":\"-500px\"},\"t\":{\"v\":\"-500px\"},\"m\":{\"v\":\"-500px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":\"-180deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"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\":{\"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\"},\"45\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"Image 8\",\"alias\":\"KEYBOARD AFTER\",\"uid\":45,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/keyboard_apple.png\",\"imageId\":107},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"v\":\"300px\",\"e\":true}},\"originalWidth\":1600,\"originalHeight\":1600,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\"},\"t\":{\"v\":\"-70px\"},\"m\":{\"v\":\"-170px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":15,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2200},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-200px\"},\"n\":{\"v\":\"-200px\"},\"t\":{\"v\":\"-200px\"},\"m\":{\"v\":\"-200px\"}},\"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\":\"90deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2200,\"startRelative\":2200},\"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\":2000,\"start\":2200,\"startRelative\":2200},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4800,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"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\":{\"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\"},\"9\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"CLEAN\",\"alias\":\"After Text 1\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"110px\",\"e\":true},\"n\":{\"v\":\"110px\"},\"t\":{\"v\":\"110px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":16,\"position\":\"relative\"},\"attributes\":{\"classes\":\"tp-blackshadow\",\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2000,\"startRelative\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"startRelative\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5000,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"5\"},\"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\",\"0px\",\"0px\",\"50px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"50px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"50px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"50px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"filter\":{\"blendMode\":\"overlay\"},\"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\"},\"49\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"Get the Before \\/ After Add-On for Slider Revolution free\",\"alias\":\"After Text 2\",\"uid\":49,\"size\":{\"width\":{\"d\":{\"v\":\"960px\",\"e\":true},\"n\":{\"v\":\"960px\"},\"t\":{\"v\":\"960px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"960px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"210px\",\"e\":true},\"n\":{\"v\":\"210px\"},\"t\":{\"v\":\"210px\"},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":17,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2100,\"startRelative\":2100},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2100,\"startRelative\":2100},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4900,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"5\"},\"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\",\"0px\",\"0px\",\"5px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"5px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"5px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"5px\"],\"e\":true}},\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"13px\"},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\"},\"44\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"MAKE A CHOICE\",\"alias\":\"After Button 1\",\"uid\":44,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"80px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":18,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":18,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2200},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2200,\"startRelative\":2200},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2200,\"startRelative\":2200},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4800,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"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\",\"40px\",\"0px\",\"45px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"40px\",\"0px\",\"45px\"]},\"t\":{\"v\":[\"0\",\"40px\",\"0px\",\"45px\"]},\"m\":{\"v\":[\"0\",\"40px\",\"0px\",\"45px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\"},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#656565\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"filter\":{\"blendMode\":\"overlay\"},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"200\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(14, 6, 2, '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":true,\"direction\":\"horizontal\",\"delay\":\"500\",\"time\":\"750\",\"easing\":\"power2.inOut\",\"animateOut\":\"fade\",\"moveTo\":{\"d\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"n\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"t\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"m\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"}},\"teaser\":{\"set\":\"none\",\"type\":\"repel\",\"distance\":\"5\",\"speed\":\"1500\",\"easing\":\"ease-in-out\",\"delay\":0},\"shift\":{\"set\":false,\"offset\":10,\"speed\":300,\"easing\":\"ease\",\"delay\":0},\"bg\":{\"type\":\"image\",\"color\":\"#e7e7e7\",\"externalSrc\":\"\",\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/beforeafterslider\\/day.jpg\",\"imageId\":115,\"imageSourceType\":\"full\",\"mpeg\":\"\",\"vimeo\":\"\",\"youtube\":\"\",\"width\":\"\",\"height\":\"\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"dottedOverlay\":\"none\",\"startAt\":\"\",\"endAt\":\"\",\"forceCover\":true,\"forceRewind\":true,\"loop\":\"none\",\"mute\":true,\"nextSlideAtEnd\":false,\"ratio\":\"16:9\",\"speed\":\"1\",\"volume\":\"\"},\"videoId\":\"\"}}},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/night.jpg\",\"mpeg\":\"http:\\/\\/builder.themepunch.com\\/wp-content\\/uploads\\/2017\\/04\\/Palm_Trees.mp4\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loop\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/night.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/beforeafterslider\\/slide2.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"set\":true,\"blurStart\":\"30\",\"duration\":\"5000\",\"ease\":\"power4.out\",\"fitStart\":\"150\"},\"version\":\"6.2.0\"}', '{\"15\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Html5 Video\",\"alias\":\"Html5 video\",\"uid\":15,\"media\":{\"mediaType\":\"html5\",\"posterUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\",\"thumbs\":{\"veryBig\":{\"url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\"},\"big\":{\"url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\"},\"large\":{\"url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\"},\"medium\":{\"url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\"},\"small\":{\"url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\"}},\"mp4Url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-2.mp4\",\"controls\":false,\"cover\":true,\"startAt\":\"\",\"endAt\":\"\",\"forceRewind\":false,\"fullWidth\":true,\"largeControls\":false,\"nextSlideAtEnd\":false,\"preloadAudio\":\"none\",\"preloadWait\":\"5\",\"stopAllVideo\":false,\"playInline\":false,\"loop\":\"loop\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":480,\"originalHeight\":360,\"covermode\":\"cover-proportional\",\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":1.3333333333333333},\"n\":{\"v\":1.3333333333333333},\"t\":{\"v\":1.3333333333333333},\"m\":{\"v\":1.3333333333333333}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"classes\":\"tp-blendvideo\",\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2500},{\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"grayscale\":\"0%\",\"blur\":\"0px\"},\"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\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"delay\":\"10\",\"grayscale\":\"0%\",\"blur\":\"0px\"},\"words\":{\"delay\":\"10\",\"grayscale\":\"0%\",\"blur\":\"0px\"},\"lines\":{\"delay\":\"10\",\"grayscale\":\"0%\",\"blur\":\"0px\"}},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4500,\"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\":\"\",\"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\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}},\"filter\":{\"blendMode\":\"overlay\"},\"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\":{\"visible\":false},\"type\":\"video\",\"version\":\"6.2.0\"},\"17\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\" \",\"alias\":\"OVERLAY\",\"uid\":17,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"cover\",\"originalWidth\":\"100%\",\"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\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"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\":\"#ffffff\"},\"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\"},\"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\"]}},\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"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\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}},\"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\":{\"visible\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Night\",\"alias\":\"Before Text 1\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-280px\",\"e\":true},\"n\":{\"v\":\"-280px\"},\"t\":{\"v\":\"-280px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-10px\",\"e\":true},\"n\":{\"v\":\"-10px\"},\"t\":{\"v\":\"-10px\"},\"m\":{\"v\":\"-10px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"classes\":\"tp-whiteshadow\",\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":500,\"startRelative\":500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":500,\"startRelative\":500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6500,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\"},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"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\",\"0px\",\"0px\",\"20px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"filter\":{\"blendMode\":\"screen\"},\"svg\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\"},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"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\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"9\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"DAY\",\"alias\":\"After Text 1\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"280px\",\"e\":true},\"n\":{\"v\":\"280px\"},\"t\":{\"v\":\"280px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-10px\",\"e\":true},\"n\":{\"v\":\"-10px\"},\"t\":{\"v\":\"-10px\"},\"m\":{\"v\":\"-10px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"classes\":\"tp-blackshadow\",\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2000,\"startRelative\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":2000,\"startRelative\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5000,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\",\"0px\",\"0px\",\"20px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"filter\":{\"blendMode\":\"overlay\"},\"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\"},\"11\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"I often think that the night is more alive and more richly colored than the day.<br\\/>\\n\\u2014 Vincent Van Gogh\\n\",\"alias\":\"Before Text 2\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"400px\"},\"t\":{\"v\":\"400px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"400px\"},\"position\":{\"x\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"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\":2500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4500,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"],\"e\":true}},\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"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\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"13\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"Fishing, with me, has always been an excuse to drink in the daytime.\\n<br\\/>\\n\\u2014 Jimmy Cannon\",\"alias\":\"After Text 2\",\"uid\":13,\"size\":{\"width\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"400px\"},\"t\":{\"v\":\"400px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"400px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-300px\",\"e\":true},\"n\":{\"v\":\"-300px\"},\"t\":{\"v\":\"-300px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"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\":2500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4500,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"],\"e\":true}},\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"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\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\"}}', '{\"hor_lines\":[\"600px\"],\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(15, 6, 3, '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":true,\"direction\":\"horizontal\",\"delay\":\"500\",\"time\":\"750\",\"easing\":\"power2.inOut\",\"animateOut\":\"fade\",\"moveTo\":{\"d\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"n\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"t\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"m\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"}},\"teaser\":{\"set\":\"none\",\"type\":\"repel\",\"distance\":\"5\",\"speed\":\"1500\",\"easing\":\"ease-in-out\",\"delay\":0},\"shift\":{\"set\":false,\"offset\":10,\"speed\":300,\"easing\":\"ease\",\"delay\":0},\"bg\":{\"type\":\"image\",\"color\":\"#e7e7e7\",\"externalSrc\":\"\",\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/beforeafterslider\\/after1-1.jpg\",\"imageId\":117,\"imageSourceType\":\"full\",\"mpeg\":\"\",\"vimeo\":\"\",\"youtube\":\"\",\"width\":\"\",\"height\":\"\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"dottedOverlay\":\"none\",\"startAt\":\"\",\"endAt\":\"\",\"forceCover\":true,\"forceRewind\":true,\"loop\":\"none\",\"mute\":true,\"nextSlideAtEnd\":false,\"ratio\":\"16:9\",\"speed\":\"1\",\"volume\":\"\"},\"videoId\":\"\"}}},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/before1-1.jpg\",\"mpeg\":\"http:\\/\\/builder.themepunch.com\\/wp-content\\/uploads\\/2017\\/04\\/Palm_Trees.mp4\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loop\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/before1-1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/beforeafterslider\\/slide3.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"set\":true,\"blurStart\":\"30\",\"duration\":\"5000\",\"ease\":\"power4.out\",\"fitStart\":\"150\"},\"version\":\"6.2.0\"}', '{\"3\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"&\",\"alias\":\"Before &\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"v\":\"1px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"5\",\"scaleY\":\"5\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.05\",\"scaleY\":\"1.05\"},\"speed\":2000,\"ease\":\"power1.inOut\"}},\"effects\":{\"parallax\":\"2\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(0, 28, 159, 0.5)\",\"e\":true},\"n\":{\"v\":\"rgba(0, 28, 159, 0.5)\"},\"t\":{\"v\":\"rgba(0, 28, 159, 0.5)\"},\"m\":{\"v\":\"rgba(0, 28, 159, 0.5)\",\"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\",\"50px\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Abril Fatface\",\"fontSize\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"200px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"200px\",\"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\":\"rgba(0, 28, 159, 0.5)\",\"e\":true},\"n\":{\"v\":\"rgba(0, 28, 159, 0.5)\"},\"t\":{\"v\":\"rgba(0, 28, 159, 0.5)\"},\"m\":{\"v\":\"rgba(0, 28, 159, 0.5)\",\"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\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"1\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Before\",\"alias\":\"Before Text 1\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-250px\",\"e\":true},\"n\":{\"v\":\"-250px\"},\"t\":{\"v\":\"-250px\"},\"m\":{\"v\":\"-60px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"-50px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"transform\":{\"x\":{\"d\":{\"v\":\"-200px\"},\"n\":{\"v\":\"-200px\"},\"t\":{\"v\":\"-200px\"},\"m\":{\"v\":\"-200px\"}},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":450,\"startRelative\":450},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":450,\"startRelative\":450},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6550,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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\",\"20px\",\"30px\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"20px\",\"30px\",\"0\"]},\"t\":{\"v\":[\"0\",\"20px\",\"30px\",\"0\"]},\"m\":{\"v\":[\"0\",\"20px\",\"30px\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Yellowtail\",\"fontSize\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\"},\"m\":{\"v\":\"80px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\"},\"m\":{\"v\":\"80px\",\"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\"},\"visibility\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"&\",\"alias\":\"After &\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":300},{\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.05\",\"scaleY\":\"1.05\"},\"speed\":2000,\"ease\":\"power1.inOut\"}},\"effects\":{\"parallax\":\"2\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(233, 0, 82, 0.5)\",\"e\":true},\"n\":{\"v\":\"rgba(233, 0, 82, 0.5)\"},\"t\":{\"v\":\"rgba(233, 0, 82, 0.5)\"},\"m\":{\"v\":\"rgba(233, 0, 82, 0.5)\",\"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\",\"50px\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Abril Fatface\",\"fontSize\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"200px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"200px\",\"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\":\"rgba(233, 0, 82, 0.5)\",\"e\":true},\"n\":{\"v\":\"rgba(233, 0, 82, 0.5)\"},\"t\":{\"v\":\"rgba(233, 0, 82, 0.5)\"},\"m\":{\"v\":\"rgba(233, 0, 82, 0.5)\",\"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\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"After\",\"alias\":\"After Text 2\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-10px\",\"e\":true},\"n\":{\"v\":\"-10px\"},\"t\":{\"v\":\"-10px\"},\"m\":{\"v\":\"40px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"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\":2500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"transform\":{\"x\":{\"d\":{\"v\":\"200px\"},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"200px\"}},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":2500,\"startRelative\":2500},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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\",\"5px\",\"0\",\"5px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"5px\",\"0\",\"5px\"]},\"t\":{\"v\":[\"0\",\"5px\",\"0\",\"5px\"]},\"m\":{\"v\":[\"0\",\"5px\",\"0\",\"5px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Abril Fatface\",\"fontSize\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"80px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"80px\",\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(16, 7, 1, '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":true,\"direction\":\"horizontal\",\"delay\":\"500\",\"time\":\"750\",\"easing\":\"power2.inOut\",\"animateOut\":\"fade\",\"moveTo\":{\"d\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"n\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"t\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"m\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"}},\"teaser\":{\"set\":\"infinite\",\"type\":\"repel\",\"distance\":\"5\",\"speed\":\"1500\",\"easing\":\"ease-in-out\",\"delay\":\"750\"},\"shift\":{\"set\":true,\"offset\":\"10\",\"speed\":\"300\",\"easing\":\"ease\",\"delay\":\"250\"},\"bg\":{\"type\":\"solid\",\"color\":\"{&type&:&linear&,&angle&:&270&,&colors&:[{&r&:238,&g&:205,&b&:163,&a&:&1&,&position&:0,&align&:&top&},{&r&:238,&g&:205,&b&:163,&a&:&1&,&position&:0,&align&:&bottom&},{&r&:239,&g&:98,&b&:159,&a&:&1&,&position&:100,&align&:&bottom&},{&r&:239,&g&:98,&b&:159,&a&:&1&,&position&:100,&align&:&top&}]}\",\"externalSrc\":\"\",\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"image\":\"\\/2017\\/05\\/day.jpg\",\"imageId\":\"342\",\"imageSourceType\":\"full\",\"mpeg\":\"\",\"vimeo\":\"\",\"youtube\":\"\",\"width\":\"\",\"height\":\"\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"dottedOverlay\":\"none\",\"startAt\":\"\",\"endAt\":\"\",\"forceCover\":true,\"forceRewind\":true,\"loop\":\"none\",\"mute\":true,\"nextSlideAtEnd\":false,\"ratio\":\"16:9\",\"speed\":\"1\",\"volume\":\"\"},\"videoId\":\"\"}},\"revslider-particles-addon\":{\"particles\":{\"shape\":\"circle\",\"number\":80,\"size\":6,\"sizeMin\":1,\"random\":true},\"styles\":{\"border\":{\"enable\":false,\"color\":\"#ffffff\",\"opacity\":100,\"size\":1},\"lines\":{\"enable\":false,\"color\":\"#ffffff\",\"width\":1,\"opacity\":100,\"distance\":150},\"particle\":{\"color\":\"#ffffff\",\"opacity\":100,\"opacityMin\":25,\"opacityRandom\":false,\"zIndex\":\"default\"}},\"movement\":{\"enable\":true,\"randomSpeed\":true,\"speed\":1,\"speedMin\":1,\"direction\":\"none\",\"straight\":true,\"bounce\":false},\"interactivity\":{\"hoverMode\":\"none\",\"clickMode\":\"none\"},\"bubble\":{\"distance\":400,\"size\":40,\"opacity\":40},\"grab\":{\"distance\":400,\"opacity\":50},\"repulse\":{\"distance\":200,\"easing\":100},\"pulse\":{\"size\":{\"enable\":false,\"speed\":40,\"min\":1,\"sync\":false},\"opacity\":{\"enable\":false,\"speed\":3,\"min\":1,\"sync\":false}}}},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"type\":\"solid\",\"color\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:36,&g&:57,&b&:73,&a&:1,&position&:0,&align&:&bottom&},{&r&:36,&g&:57,&b&:73,&a&:1,&position&:0,&align&:&top&},{&r&:1,&g&:22,&b&:140,&a&:1,&position&:100,&align&:&top&},{&r&:1,&g&:22,&b&:140,&a&:1,&position&:100,&align&:&bottom&}],&easing&:&none&,&strength&:100}\",\"mpeg\":\"http:\\/\\/builder.themepunch.com\\/wp-content\\/uploads\\/2017\\/04\\/Palm_Trees.mp4\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loop\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/beforeafterslider\\/slide1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/beforeafterslider\\/slide1.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"panzoom\":{\"blurStart\":\"30\",\"duration\":\"5000\",\"ease\":\"power4.out\",\"fitStart\":\"150\"},\"nav\":{\"arrows\":{\"presets\":{\"left-icon\":\"\\\\e824\",\"left-icon-def\":false,\"right-icon\":\"\\\\e825\",\"right-icon-def\":false}}}}', '{\"1\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"FUTURES\",\"alias\":\"Before text 1\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"135px\",\"e\":true},\"n\":{\"v\":\"135px\"},\"t\":{\"v\":\"135px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":10},\"attributes\":{\"classes\":\"tp-whiteshadow\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\"}}},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"direction\":\"random\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"random\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"random\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"direction\":\"random\",\"delay\":\"10\"},\"words\":{\"direction\":\"random\",\"delay\":\"10\"},\"lines\":{\"direction\":\"random\",\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":6500,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"direction\":\"random\",\"delay\":\"10\"},\"words\":{\"direction\":\"random\",\"delay\":\"10\"},\"lines\":{\"direction\":\"random\",\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"effects\":{\"parallax\":\"5\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"v\":\"#000000\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,50],\"e\":true},\"n\":{\"v\":[0,0,0,50],\"e\":false},\"t\":{\"v\":[0,0,0,50],\"e\":false},\"m\":{\"v\":[0,0,0,50],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"filter\":{\"blendMode\":\"screen\"},\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\"},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"9\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"CLEAN\",\"alias\":\"After text 1\",\"uid\":9,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"110px\",\"e\":true},\"n\":{\"v\":\"110px\"},\"t\":{\"v\":\"110px\"},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":17},\"attributes\":{\"classes\":\"tp-blackshadow\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\"}}},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2000,\"startRelative\":2000,\"endWithSlide\":false},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2000,\"startRelative\":2000,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":5000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"effects\":{\"parallax\":\"5\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,50],\"e\":true},\"n\":{\"v\":[0,0,0,50],\"e\":false},\"t\":{\"v\":[0,0,0,50],\"e\":false},\"m\":{\"v\":[0,0,0,50],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"filter\":{\"blendMode\":\"overlay\"},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"visible\":false},\"type\":\"text\"},\"23\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"\",\"alias\":\"Pot\",\"uid\":23,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/object_plant_1.png\",\"imageId\":106,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"375px\",\"e\":true},\"n\":{\"v\":\"375px\"},\"t\":{\"v\":\"375px\"},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"375px\",\"e\":true},\"n\":{\"v\":\"375px\"},\"t\":{\"v\":\"375px\"},\"m\":{\"v\":\"200px\",\"e\":true}},\"originalWidth\":1500,\"originalHeight\":1500,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"v\":\"-578px\",\"e\":true},\"n\":{\"v\":\"-578px\"},\"t\":{\"v\":\"-578px\"},\"m\":{\"v\":\"-221px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-344px\",\"e\":true},\"n\":{\"v\":\"-344px\"},\"t\":{\"v\":\"-344px\"},\"m\":{\"v\":\"-194px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}},\"y\":{\"d\":{\"v\":\"-500px\"},\"n\":{\"v\":\"-500px\"},\"t\":{\"v\":\"-500px\"},\"m\":{\"v\":\"-500px\"}},\"opacity\":\"1\",\"rotationZ\":\"90deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600,\"startRelative\":600,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600,\"startRelative\":600,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":6400,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"image\"},\"29\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"FUTURES THINKING AND STRATEGY TRANSFORMATION 2030 AND BEYOND - 3 DAY COURSE\",\"alias\":\"Copy before text 2\",\"uid\":29,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"999px\",\"e\":true},\"n\":{\"v\":\"999px\"},\"t\":{\"v\":\"999px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"960px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"218px\",\"e\":true},\"n\":{\"v\":\"218px\"},\"t\":{\"v\":\"218px\"},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":12},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\"}}},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":600,\"startRelative\":600,\"endWithSlide\":false},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":600,\"startRelative\":600,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":6400,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"effects\":{\"parallax\":\"5\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,5],\"e\":true},\"n\":{\"v\":[0,0,0,5],\"e\":false},\"t\":{\"v\":[0,0,0,5],\"e\":false},\"m\":{\"v\":[0,0,0,5],\"e\":true}},\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"13px\"},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"30\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"FUTURES THINKING AND STRATEGY TRANSFORMATION 2030 AND BEYOND - 3 DAY COURSE\",\"alias\":\"Copy  before text 2\",\"uid\":30,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"999px\",\"e\":true},\"n\":{\"v\":\"999px\"},\"t\":{\"v\":\"999px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"960px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"59px\",\"e\":true},\"n\":{\"v\":\"59px\"},\"t\":{\"v\":\"59px\"},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":11},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\"}}},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":600,\"startRelative\":600,\"endWithSlide\":false},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":600,\"startRelative\":600,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":6400,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"effects\":{\"parallax\":\"5\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,5],\"e\":true},\"n\":{\"v\":[0,0,0,5],\"e\":false},\"t\":{\"v\":[0,0,0,5],\"e\":false},\"m\":{\"v\":[0,0,0,5],\"e\":true}},\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"13px\"},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"37\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"\",\"alias\":\"Mac\",\"uid\":37,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/Picture1.png\",\"imageId\":149,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"568px\",\"e\":true},\"n\":{\"v\":\"568px\"},\"t\":{\"v\":\"568px\"},\"m\":{\"v\":\"500px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"426px\",\"e\":true},\"n\":{\"v\":\"426px\"},\"t\":{\"v\":\"426px\"},\"m\":{\"v\":\"500px\",\"e\":true}},\"originalWidth\":945,\"originalHeight\":708,\"aspectRatio\":{\"d\":{\"v\":1.3347457627118644},\"n\":{\"v\":1.3347457627118644},\"t\":{\"v\":1.3347457627118644},\"m\":{\"v\":1.3347457627118644}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-187px\",\"e\":true},\"n\":{\"v\":\"-187px\"},\"t\":{\"v\":\"-187px\"},\"m\":{\"v\":\"-280px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"opacity\":\"1\",\"rotationX\":\"-180deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":6500,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"image\"},\"38\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"\",\"alias\":\"Mac after\",\"uid\":38,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/object_macscreen_2.png\",\"imageId\":110,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"1000px\"},\"m\":{\"v\":\"500px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"1000px\"},\"m\":{\"v\":\"500\",\"e\":true}},\"originalWidth\":2000,\"originalHeight\":2000,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-280px\",\"e\":true},\"n\":{\"v\":\"-280px\"},\"t\":{\"v\":\"-280px\"},\"m\":{\"v\":\"-280px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":14},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"opacity\":\"1\",\"rotationX\":\"-180deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2000,\"startRelative\":2000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2000,\"startRelative\":2000,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":5000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"visible\":false},\"type\":\"image\"},\"42\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"\",\"alias\":\"Coffee\",\"uid\":42,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/object_coffee_1.png\",\"imageId\":111,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"375px\",\"e\":true},\"n\":{\"v\":\"375px\"},\"t\":{\"v\":\"375px\"},\"m\":{\"v\":\"170px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"375px\",\"e\":true},\"n\":{\"v\":\"375px\"},\"t\":{\"v\":\"375px\"},\"m\":{\"v\":\"170px\",\"e\":true}},\"originalWidth\":1500,\"originalHeight\":1500,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"v\":\"545px\",\"e\":true},\"n\":{\"v\":\"545px\"},\"t\":{\"v\":\"545px\"},\"m\":{\"v\":\"181px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-203px\",\"e\":true},\"n\":{\"v\":\"-203px\"},\"t\":{\"v\":\"-203px\"},\"m\":{\"v\":\"-178px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":15},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"right\"},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"y\":{\"d\":{\"v\":\"-500px\"},\"n\":{\"v\":\"-500px\"},\"t\":{\"v\":\"-500px\"},\"m\":{\"v\":\"-500px\"}},\"opacity\":\"1\",\"rotationZ\":\"-180deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2100,\"startRelative\":2100,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2100,\"startRelative\":2100,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":4900,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"visible\":false},\"type\":\"image\"},\"44\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"MAKE A CHOICE\",\"alias\":\"After button 1\",\"uid\":44,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"80px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"position\":\"relative\",\"zIndex\":19},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\"}}},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2200,\"startRelative\":2200,\"endWithSlide\":false},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2200,\"startRelative\":2200,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":4800,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2200},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,40,0,45],\"e\":true},\"n\":{\"v\":[0,40,0,45],\"e\":false},\"t\":{\"v\":[0,40,0,45],\"e\":false},\"m\":{\"v\":[0,40,0,45],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\"},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#656565\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"filter\":{\"blendMode\":\"overlay\"},\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"200\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"visible\":false},\"type\":\"text\"},\"45\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"\",\"alias\":\"Keyboard after\",\"uid\":45,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/keyboard_apple.png\",\"imageId\":107,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"v\":\"300px\",\"e\":true}},\"originalWidth\":1600,\"originalHeight\":1600,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\"},\"t\":{\"v\":\"-70px\"},\"m\":{\"v\":\"-170px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":16},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"-200px\"},\"n\":{\"v\":\"-200px\"},\"t\":{\"v\":\"-200px\"},\"m\":{\"v\":\"-200px\"}},\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"opacity\":\"1\",\"rotationZ\":\"90deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2200,\"startRelative\":2200,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2200,\"startRelative\":2200,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":4800,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"visible\":false},\"type\":\"image\"},\"46\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"REGISTER\",\"alias\":\"Before button 1\",\"uid\":46,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"80px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"position\":\"relative\",\"zIndex\":13},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\"}}},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":700,\"startRelative\":700,\"endWithSlide\":false},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":700,\"startRelative\":700,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":6300,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,40,0,45],\"e\":true},\"n\":{\"v\":[0,40,0,45],\"e\":false},\"t\":{\"v\":[0,40,0,45],\"e\":false},\"m\":{\"v\":[0,40,0,45],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\"},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#656565\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"filter\":{\"blendMode\":\"overlay\"},\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"200\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"49\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"Get the Before \\/ After Add-On for Slider Revolution free\",\"alias\":\"After text 2\",\"uid\":49,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"960px\",\"e\":true},\"n\":{\"v\":\"960px\"},\"t\":{\"v\":\"960px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"960px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"210px\",\"e\":true},\"n\":{\"v\":\"210px\"},\"t\":{\"v\":\"210px\"},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":18},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":18,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\"}}},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2100,\"startRelative\":2100,\"endWithSlide\":false},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":2000,\"start\":2100,\"startRelative\":2100,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":9000,\"startRelative\":4900,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2100},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"effects\":{\"parallax\":\"5\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,5],\"e\":true},\"n\":{\"v\":[0,0,0,5],\"e\":false},\"t\":{\"v\":[0,0,0,5],\"e\":false},\"m\":{\"v\":[0,0,0,5],\"e\":true}},\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"13px\"},\"m\":{\"v\":\"13px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"visible\":false},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(17, 7, 2, '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":true,\"direction\":\"horizontal\",\"delay\":\"500\",\"time\":\"750\",\"easing\":\"power2.inOut\",\"animateOut\":\"fade\",\"moveTo\":{\"d\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"n\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"t\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"m\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"}},\"teaser\":{\"set\":\"none\",\"type\":\"repel\",\"distance\":\"5\",\"speed\":\"1500\",\"easing\":\"ease-in-out\",\"delay\":0},\"shift\":{\"set\":false,\"offset\":10,\"speed\":300,\"easing\":\"ease\",\"delay\":0},\"bg\":{\"type\":\"image\",\"color\":\"#e7e7e7\",\"externalSrc\":\"\",\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/beforeafterslider\\/day.jpg\",\"imageId\":115,\"imageSourceType\":\"full\",\"mpeg\":\"\",\"vimeo\":\"\",\"youtube\":\"\",\"width\":\"\",\"height\":\"\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"dottedOverlay\":\"none\",\"startAt\":\"\",\"endAt\":\"\",\"forceCover\":true,\"forceRewind\":true,\"loop\":\"none\",\"mute\":true,\"nextSlideAtEnd\":false,\"ratio\":\"16:9\",\"speed\":\"1\",\"volume\":\"\"},\"videoId\":\"\"}}},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/night.jpg\",\"mpeg\":\"http:\\/\\/builder.themepunch.com\\/wp-content\\/uploads\\/2017\\/04\\/Palm_Trees.mp4\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loop\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/night.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/beforeafterslider\\/slide2.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"set\":true,\"blurStart\":\"30\",\"duration\":\"5000\",\"ease\":\"power4.out\",\"fitStart\":\"150\"},\"version\":\"6.2.0\"}', '{\"15\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Html5 Video\",\"alias\":\"Html5 video\",\"uid\":15,\"media\":{\"mediaType\":\"html5\",\"posterUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\",\"thumbs\":{\"veryBig\":{\"url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\"},\"big\":{\"url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\"},\"large\":{\"url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\"},\"medium\":{\"url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\"},\"small\":{\"url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-1.jpg\"}},\"mp4Url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/tp_vid_clouds-2.mp4\",\"controls\":false,\"cover\":true,\"startAt\":\"\",\"endAt\":\"\",\"forceRewind\":false,\"fullWidth\":true,\"largeControls\":false,\"nextSlideAtEnd\":false,\"preloadAudio\":\"none\",\"preloadWait\":\"5\",\"stopAllVideo\":false,\"playInline\":false,\"loop\":\"loop\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":480,\"originalHeight\":360,\"covermode\":\"cover-proportional\",\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":1.3333333333333333},\"n\":{\"v\":1.3333333333333333},\"t\":{\"v\":1.3333333333333333},\"m\":{\"v\":1.3333333333333333}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"classes\":\"tp-blendvideo\",\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2500},{\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"grayscale\":\"0%\",\"blur\":\"0px\"},\"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\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"delay\":\"10\",\"grayscale\":\"0%\",\"blur\":\"0px\"},\"words\":{\"delay\":\"10\",\"grayscale\":\"0%\",\"blur\":\"0px\"},\"lines\":{\"delay\":\"10\",\"grayscale\":\"0%\",\"blur\":\"0px\"}},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4500,\"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\":\"\",\"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\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}},\"filter\":{\"blendMode\":\"overlay\"},\"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\":{\"visible\":false},\"type\":\"video\",\"version\":\"6.2.0\"},\"17\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\" \",\"alias\":\"OVERLAY\",\"uid\":17,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"cover\",\"originalWidth\":\"100%\",\"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\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"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\":\"#ffffff\"},\"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\"},\"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\"]}},\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"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\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}},\"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\":{\"visible\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Night\",\"alias\":\"Before Text 1\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-280px\",\"e\":true},\"n\":{\"v\":\"-280px\"},\"t\":{\"v\":\"-280px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-10px\",\"e\":true},\"n\":{\"v\":\"-10px\"},\"t\":{\"v\":\"-10px\"},\"m\":{\"v\":\"-10px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"classes\":\"tp-whiteshadow\",\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":500,\"startRelative\":500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":500,\"startRelative\":500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6500,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\"},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"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\",\"0px\",\"0px\",\"20px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"filter\":{\"blendMode\":\"screen\"},\"svg\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\"},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"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\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"9\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"DAY\",\"alias\":\"After Text 1\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"600px\"},\"t\":{\"v\":\"600px\"},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"280px\",\"e\":true},\"n\":{\"v\":\"280px\"},\"t\":{\"v\":\"280px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-10px\",\"e\":true},\"n\":{\"v\":\"-10px\"},\"t\":{\"v\":\"-10px\"},\"m\":{\"v\":\"-10px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"classes\":\"tp-blackshadow\",\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2000,\"startRelative\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":2000,\"startRelative\":2000},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5000,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\",\"0px\",\"0px\",\"20px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"20px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"filter\":{\"blendMode\":\"overlay\"},\"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\"},\"11\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"I often think that the night is more alive and more richly colored than the day.<br\\/>\\n\\u2014 Vincent Van Gogh\\n\",\"alias\":\"Before Text 2\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"400px\"},\"t\":{\"v\":\"400px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"400px\"},\"position\":{\"x\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"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\":2500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4500,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"],\"e\":true}},\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"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\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"13\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"Fishing, with me, has always been an excuse to drink in the daytime.\\n<br\\/>\\n\\u2014 Jimmy Cannon\",\"alias\":\"After Text 2\",\"uid\":13,\"size\":{\"width\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"400px\"},\"t\":{\"v\":\"400px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"400px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-300px\",\"e\":true},\"n\":{\"v\":\"-300px\"},\"t\":{\"v\":\"-300px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"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\":2500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4500,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"]},\"t\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"]},\"m\":{\"v\":[\"0\",\"0px\",\"0px\",\"0px\"],\"e\":true}},\"fontFamily\":\"Montserrat\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"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\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\"}}', '{\"hor_lines\":[\"600px\"],\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(18, 7, 3, '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":true,\"direction\":\"horizontal\",\"delay\":\"500\",\"time\":\"750\",\"easing\":\"power2.inOut\",\"animateOut\":\"fade\",\"moveTo\":{\"d\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"n\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"t\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"},\"m\":{\"v\":\"50%\",\"e\":true,\"u\":\"\"}},\"teaser\":{\"set\":\"none\",\"type\":\"repel\",\"distance\":\"5\",\"speed\":\"1500\",\"easing\":\"ease-in-out\",\"delay\":0},\"shift\":{\"set\":false,\"offset\":10,\"speed\":300,\"easing\":\"ease\",\"delay\":0},\"bg\":{\"type\":\"image\",\"color\":\"#e7e7e7\",\"externalSrc\":\"\",\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/beforeafterslider\\/after1-1.jpg\",\"imageId\":117,\"imageSourceType\":\"full\",\"mpeg\":\"\",\"vimeo\":\"\",\"youtube\":\"\",\"width\":\"\",\"height\":\"\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"dottedOverlay\":\"none\",\"startAt\":\"\",\"endAt\":\"\",\"forceCover\":true,\"forceRewind\":true,\"loop\":\"none\",\"mute\":true,\"nextSlideAtEnd\":false,\"ratio\":\"16:9\",\"speed\":\"1\",\"volume\":\"\"},\"videoId\":\"\"}}},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/before1-1.jpg\",\"mpeg\":\"http:\\/\\/builder.themepunch.com\\/wp-content\\/uploads\\/2017\\/04\\/Palm_Trees.mp4\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loop\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/before1-1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/beforeafterslider\\/slide3.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"set\":true,\"blurStart\":\"30\",\"duration\":\"5000\",\"ease\":\"power4.out\",\"fitStart\":\"150\"},\"version\":\"6.2.0\"}', '{\"3\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"&\",\"alias\":\"Before &\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"v\":\"1px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"5\",\"scaleY\":\"5\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.05\",\"scaleY\":\"1.05\"},\"speed\":2000,\"ease\":\"power1.inOut\"}},\"effects\":{\"parallax\":\"2\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(0, 28, 159, 0.5)\",\"e\":true},\"n\":{\"v\":\"rgba(0, 28, 159, 0.5)\"},\"t\":{\"v\":\"rgba(0, 28, 159, 0.5)\"},\"m\":{\"v\":\"rgba(0, 28, 159, 0.5)\",\"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\",\"50px\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Abril Fatface\",\"fontSize\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"200px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"200px\",\"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\":\"rgba(0, 28, 159, 0.5)\",\"e\":true},\"n\":{\"v\":\"rgba(0, 28, 159, 0.5)\"},\"t\":{\"v\":\"rgba(0, 28, 159, 0.5)\"},\"m\":{\"v\":\"rgba(0, 28, 159, 0.5)\",\"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\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"1\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Before\",\"alias\":\"Before Text 1\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-250px\",\"e\":true},\"n\":{\"v\":\"-250px\"},\"t\":{\"v\":\"-250px\"},\"m\":{\"v\":\"-60px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"-50px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"transform\":{\"x\":{\"d\":{\"v\":\"-200px\"},\"n\":{\"v\":\"-200px\"},\"t\":{\"v\":\"-200px\"},\"m\":{\"v\":\"-200px\"}},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":450,\"startRelative\":450},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":450,\"startRelative\":450},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6550,\"endWithSlide\":true},\"chars\":{\"direction\":\"backward\",\"delay\":\"10\"},\"words\":{\"direction\":\"backward\",\"delay\":\"10\"},\"lines\":{\"direction\":\"backward\",\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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\",\"20px\",\"30px\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"20px\",\"30px\",\"0\"]},\"t\":{\"v\":[\"0\",\"20px\",\"30px\",\"0\"]},\"m\":{\"v\":[\"0\",\"20px\",\"30px\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Yellowtail\",\"fontSize\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\"},\"m\":{\"v\":\"80px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\"},\"m\":{\"v\":\"80px\",\"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\"},\"visibility\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"&\",\"alias\":\"After &\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":300},{\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":6700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.05\",\"scaleY\":\"1.05\"},\"speed\":2000,\"ease\":\"power1.inOut\"}},\"effects\":{\"parallax\":\"2\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(233, 0, 82, 0.5)\",\"e\":true},\"n\":{\"v\":\"rgba(233, 0, 82, 0.5)\"},\"t\":{\"v\":\"rgba(233, 0, 82, 0.5)\"},\"m\":{\"v\":\"rgba(233, 0, 82, 0.5)\",\"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\",\"50px\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"50px\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Abril Fatface\",\"fontSize\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"200px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"200px\",\"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\":\"rgba(233, 0, 82, 0.5)\",\"e\":true},\"n\":{\"v\":\"rgba(233, 0, 82, 0.5)\"},\"t\":{\"v\":\"rgba(233, 0, 82, 0.5)\"},\"m\":{\"v\":\"rgba(233, 0, 82, 0.5)\",\"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\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"After\",\"alias\":\"After Text 2\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-10px\",\"e\":true},\"n\":{\"v\":\"-10px\"},\"t\":{\"v\":\"-10px\"},\"m\":{\"v\":\"40px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"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\":2500},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"40px\"},\"transform\":{\"x\":{\"d\":{\"v\":\"200px\"},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"200px\"}},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":2500,\"startRelative\":2500},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"40px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":2500,\"startRelative\":2500},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":4500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"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\",\"5px\",\"0\",\"5px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"5px\",\"0\",\"5px\"]},\"t\":{\"v\":[\"0\",\"5px\",\"0\",\"5px\"]},\"m\":{\"v\":[\"0\",\"5px\",\"0\",\"5px\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Abril Fatface\",\"fontSize\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"80px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"80px\",\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(19, 8, 1, '{\"title\":\"Slide\",\"bg\":{\"type\":\"solid\",\"color\":\"linear-gradient(180deg, rgba(46, 0, 104, 1) 0%, rgba(46, 0, 104, 1) 0%, rgba(67, 3, 107, 1) 50%, rgba(228, 95, 228, 1) 100%, rgba(228, 95, 228, 1) 100%)\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/clubflyer\\/slide1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/clubflyer\\/slide1.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"blurStart\":\"20\",\"duration\":\"2000\",\"ease\":\"power4.inOut\",\"fitStart\":\"200\"},\"version\":\"6.2.0\"}', '{\"12\":{\"text\":\"Image 8\",\"alias\":\"SMOKE BG\",\"uid\":12,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/smoke_png4-1.png\",\"imageId\":122},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\",\"e\":true},\"t\":{\"v\":\"1000px\",\"e\":true},\"m\":{\"v\":\"700px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1167px\",\"e\":true},\"n\":{\"v\":\"1167px\",\"e\":true},\"t\":{\"v\":\"1167px\",\"e\":true},\"m\":{\"v\":\"817px\",\"e\":true}},\"originalWidth\":1000,\"originalHeight\":1167,\"aspectRatio\":{\"d\":{\"v\":0.856898029134533},\"n\":{\"v\":0.856898029134533},\"t\":{\"v\":0.856898029134533},\"m\":{\"v\":0.856898029134533}}},\"position\":{\"x\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"220px\",\"e\":true},\"t\":{\"v\":\"180px\",\"e\":true},\"m\":{\"v\":\"110px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"40px\",\"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,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":50},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"30px\"},\"transform\":{\"x\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1.2\",\"scaleY\":\"1.2\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":50,\"startRelative\":50},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"30px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"30px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"30px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"0px\"},\"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\":2000,\"start\":50,\"startRelative\":50},\"chars\":{\"delay\":\"10\",\"blur\":\"0px\"},\"words\":{\"delay\":\"10\",\"blur\":\"0px\"},\"lines\":{\"delay\":\"10\",\"blur\":\"0px\"}},\"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\":6950,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":20000}},\"effects\":{\"parallax\":\"5\"},\"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\"},\"4\":{\"text\":\" \",\"alias\":\"BORDER BOX\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\",\"e\":true},\"t\":{\"v\":\"500px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"550px\",\"e\":true},\"n\":{\"v\":\"430px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"420px\",\"e\":true}},\"originalWidth\":\"500px\",\"originalHeight\":\"550px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"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\":{\"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\":300},{\"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\":\"power4.out\",\"speed\":4000,\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"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\":4700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"9\"},\"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\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"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\":\"transparent\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"12px\",\"12px\",\"12px\",\"12px\"],\"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\"},\"1\":{\"text\":\"DEEP\",\"alias\":\"TEXT 1\",\"uid\":1,\"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\":\"407px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"118px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"109px\",\"e\":true},\"n\":{\"v\":\"109px\",\"e\":true},\"t\":{\"v\":\"109px\",\"e\":true},\"m\":{\"v\":\"115px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"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\":400},{\"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\":\"power4.out\",\"speed\":4000,\"start\":400,\"startRelative\":400},\"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\":4000,\"start\":400,\"startRelative\":400},\"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\":4600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"9\"},\"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\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"60px\",\"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\":\"HOUSE\\n\",\"alias\":\"TEXT 2\",\"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\":\"407px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"118px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"186px\",\"e\":true},\"t\":{\"v\":\"186px\",\"e\":true},\"m\":{\"v\":\"184px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"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\":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\":\"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\":\"power4.out\",\"speed\":4000,\"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\":\"power4.out\",\"speed\":4000,\"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\":4500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"9\"},\"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\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"60px\",\"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\"},\"7\":{\"text\":\"CLUB\",\"alias\":\"TEXT 3\",\"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\":\"407px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"118px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"292px\",\"e\":true},\"n\":{\"v\":\"264px\",\"e\":true},\"t\":{\"v\":\"264px\",\"e\":true},\"m\":{\"v\":\"254px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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\":600},{\"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\":\"power4.out\",\"speed\":4000,\"start\":600,\"startRelative\":600},\"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\":4000,\"start\":600,\"startRelative\":600},\"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\":4400,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"9\"},\"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\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\",\"e\":true},\"t\":{\"v\":\"300\",\"e\":true},\"m\":{\"v\":\"300\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"60px\",\"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\"},\"8\":{\"text\":\"NIGHT\\n\",\"alias\":\"TEXT 4\",\"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\":\"407px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"118px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"383px\",\"e\":true},\"n\":{\"v\":\"341px\",\"e\":true},\"t\":{\"v\":\"341px\",\"e\":true},\"m\":{\"v\":\"324px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":700},{\"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\":\"power4.out\",\"speed\":4000,\"start\":700,\"startRelative\":700},\"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\":4000,\"start\":700,\"startRelative\":700},\"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\":4300,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"9\"},\"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\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\",\"e\":true},\"t\":{\"v\":\"100\",\"e\":true},\"m\":{\"v\":\"100\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"60px\",\"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\"},\"10\":{\"text\":\"@PUNCHHOUSE\",\"alias\":\"CLUB\",\"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\":\"407px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"118px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"497px\",\"e\":true},\"n\":{\"v\":\"427px\",\"e\":true},\"t\":{\"v\":\"427px\",\"e\":true},\"m\":{\"v\":\"401px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"},\"explodinglayers\":{\"type\":\"triangle\",\"color\":\"#000000\",\"density\":\"1\",\"direction\":\"right\",\"padding\":\"150\",\"power\":\"25\",\"size\":\"5\",\"speed\":\"5\",\"style\":\"fill\",\"sync\":true,\"randomsize\":true,\"randomspeed\":true,\"use\":true}},\"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\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"10\"},\"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\",\"10px\",\"0px\",\"10px\"],\"e\":true},\"n\":{\"v\":[\"0\",\"10px\",\"0px\",\"10px\"],\"e\":true},\"t\":{\"v\":[\"0\",\"10px\",\"0px\",\"10px\"],\"e\":true},\"m\":{\"v\":[\"0\",\"10px\",\"0px\",\"10px\"],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\",\"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\":\"#000000\",\"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\":\"FRIDAY JUNE 29 | 2:00am\",\"alias\":\"DATE\",\"uid\":3,\"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\":\"407px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"36px\",\"e\":true},\"t\":{\"v\":\"36px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":900},{\"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\":\"power4.out\",\"speed\":1000,\"start\":900,\"startRelative\":900},\"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\":1000,\"start\":900,\"startRelative\":900},\"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\":7100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"8\"},\"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,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\",\"e\":true},\"t\":{\"v\":\"300\",\"e\":true},\"m\":{\"v\":\"300\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"4px\",\"e\":true},\"n\":{\"v\":\"4px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"25px\",\"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\"},\"14\":{\"text\":\"Image 8\",\"alias\":\"SMOKE OVERLAY\",\"uid\":14,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/smoke_overlay.png\",\"imageId\":123},\"size\":{\"width\":{\"d\":{\"v\":\"297px\",\"e\":true},\"n\":{\"v\":\"297px\",\"e\":true},\"t\":{\"v\":\"297px\",\"e\":true},\"m\":{\"v\":\"208px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"192px\",\"e\":true},\"n\":{\"v\":\"192px\",\"e\":true},\"t\":{\"v\":\"192px\",\"e\":true},\"m\":{\"v\":\"134px\",\"e\":true}},\"originalWidth\":297,\"originalHeight\":192,\"aspectRatio\":{\"d\":{\"v\":1.546875},\"n\":{\"v\":1.546875},\"t\":{\"v\":1.546875},\"m\":{\"v\":1.546875}}},\"position\":{\"x\":{\"d\":{\"v\":\"361px\",\"e\":true},\"n\":{\"v\":\"331px\",\"e\":true},\"t\":{\"v\":\"291px\",\"e\":true},\"m\":{\"v\":\"188px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-143px\",\"e\":true},\"n\":{\"v\":\"-143px\",\"e\":true},\"t\":{\"v\":\"-143px\",\"e\":true},\"m\":{\"v\":\"-60px\",\"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\":13,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":50},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"30px\"},\"transform\":{\"x\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"300px\"},\"m\":{\"v\":\"300px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1.2\",\"scaleY\":\"1.2\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":50,\"startRelative\":50},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"30px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"30px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"30px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"0px\"},\"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\":2000,\"start\":50,\"startRelative\":50},\"chars\":{\"delay\":\"10\",\"blur\":\"0px\"},\"words\":{\"delay\":\"10\",\"blur\":\"0px\"},\"lines\":{\"delay\":\"10\",\"blur\":\"0px\"}},\"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\":6950,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":20000}},\"effects\":{\"parallax\":\"5\"},\"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\"},\"16\":{\"text\":\"DJ HORVATH | DIRTY D | PATMAN \",\"alias\":\"FEATURE\",\"uid\":16,\"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\":\"670px\",\"e\":true},\"n\":{\"v\":\"540px\",\"e\":true},\"t\":{\"v\":\"590px\",\"e\":true},\"m\":{\"v\":\"525px\",\"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\":14,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"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\":\"power4.out\",\"speed\":1000,\"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\":\"power4.out\",\"speed\":1000,\"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\":7000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"8\"},\"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,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"4px\",\"e\":true},\"n\":{\"v\":\"4px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\"},\"17\":{\"text\":\"TICKETS $35\",\"alias\":\"FEATURE 2\",\"uid\":17,\"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\":\"710px\",\"e\":true},\"n\":{\"v\":\"580px\",\"e\":true},\"t\":{\"v\":\"630px\",\"e\":true},\"m\":{\"v\":\"556px\",\"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\":15,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1100},{\"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\":\"power4.out\",\"speed\":1000,\"start\":1100,\"startRelative\":1100},\"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\":1000,\"start\":1100,\"startRelative\":1100},\"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}},\"effects\":{\"parallax\":\"8\"},\"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,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\",\"e\":true},\"t\":{\"v\":\"300\",\"e\":true},\"m\":{\"v\":\"300\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\"},\"18\":{\"subtype\":\"roundbutton\",\"text\":\"BUY TICKETS\",\"alias\":\"BTN\",\"uid\":18,\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\",\"e\":true},\"t\":{\"v\":\"500px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"500px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"780px\",\"e\":true},\"n\":{\"v\":\"650px\",\"e\":true},\"t\":{\"v\":\"730px\",\"e\":true},\"m\":{\"v\":\"600px\",\"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\":16,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1500},{\"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\":1200,\"start\":1500,\"startRelative\":1500},\"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\":1500,\"startRelative\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"},\"explodinglayers\":{\"type\":\"triangle\",\"color\":\"#000000\",\"density\":\"2\",\"direction\":\"right\",\"padding\":\"150\",\"power\":\"50\",\"size\":\"10\",\"speed\":\"5\",\"style\":\"fill\",\"sync\":true,\"randomsize\":true,\"randomspeed\":true,\"use\":true}},\"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\":6300,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"9\"},\"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\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"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\":\"60px\",\"e\":true},\"m\":{\"v\":\"60px\",\"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\":\"#000000\",\"borderColor\":\"rgba(0,0,0,1)\",\"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\":{\"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\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"rgba(0,0,0,1)\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(20, 9, 1, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"type\":\"solid\",\"color\":\"{&type&:&linear&,&angle&:&180&,&colors&:[{&r&:36,&g&:104,&b&:239,&a&:1,&position&:0,&align&:&top&},{&r&:36,&g&:104,&b&:239,&a&:1,&position&:0,&align&:&bottom&},{&r&:13,&g&:0,&b&:45,&a&:1,&position&:100,&align&:&bottom&},{&r&:13,&g&:0,&b&:45,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/clubflyer\\/slide1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/clubflyer\\/slide1.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[\"default\"],\"duration\":[600],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"panzoom\":{\"blurStart\":\"20\",\"duration\":\"2000\",\"ease\":\"power4.inOut\",\"fitStart\":\"200\"}}', '{\"1\":{\"text\":\"ARTICLES\",\"alias\":\"Text 1\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"407px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"118px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"109px\",\"e\":true},\"n\":{\"v\":\"109px\",\"e\":true},\"t\":{\"v\":\"109px\",\"e\":true},\"m\":{\"v\":\"115px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"start\":400,\"startRelative\":400,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"start\":400,\"startRelative\":400,\"endWithSlide\":false,\"frameLength\":4000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":4600,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"9\"},\"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,\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"3\":{\"text\":\"LITERARY RESOURCES\",\"alias\":\"Date\",\"uid\":3,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"407px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"36px\",\"e\":true},\"t\":{\"v\":\"36px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":15},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":900,\"startRelative\":900,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":900,\"startRelative\":900,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":7100,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"8\"},\"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,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\",\"e\":true},\"t\":{\"v\":\"300\",\"e\":true},\"m\":{\"v\":\"300\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"4px\",\"e\":true},\"n\":{\"v\":\"4px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"4\":{\"text\":\"\",\"alias\":\"Border box\",\"uid\":4,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"724px\",\"e\":true},\"n\":{\"v\":\"500px\",\"e\":true},\"t\":{\"v\":\"500px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"550px\",\"e\":true},\"n\":{\"v\":\"430px\",\"e\":true},\"t\":{\"v\":\"480px\",\"e\":true},\"m\":{\"v\":\"420px\",\"e\":true}},\"originalWidth\":\"500px\",\"originalHeight\":\"550px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"66px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"83px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"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\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"start\":300,\"startRelative\":300,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"start\":300,\"startRelative\":300,\"endWithSlide\":false,\"frameLength\":4000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":4700,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"9\"},\"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,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"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}},\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"12px\",\"12px\",\"12px\",\"12px\"],\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"6\":{\"text\":\"ESSAYS\\n\",\"alias\":\"Text 2\",\"uid\":6,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"449px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"403px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"118px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"198px\",\"e\":true},\"n\":{\"v\":\"186px\",\"e\":true},\"t\":{\"v\":\"186px\",\"e\":true},\"m\":{\"v\":\"184px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":11},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":4000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":4500,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"9\"},\"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,\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"7\":{\"text\":\"NARRATIVES\",\"alias\":\"Text 3\",\"uid\":7,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"118px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"290px\",\"e\":true},\"n\":{\"v\":\"264px\",\"e\":true},\"t\":{\"v\":\"264px\",\"e\":true},\"m\":{\"v\":\"254px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":12},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"start\":600,\"startRelative\":600,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"start\":600,\"startRelative\":600,\"endWithSlide\":false,\"frameLength\":4000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":4400,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"9\"},\"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,\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\",\"e\":true},\"t\":{\"v\":\"300\",\"e\":true},\"m\":{\"v\":\"300\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"8\":{\"text\":\"STORIES\\n\",\"alias\":\"Text 4\",\"uid\":8,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"406px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"118px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"383px\",\"e\":true},\"n\":{\"v\":\"341px\",\"e\":true},\"t\":{\"v\":\"341px\",\"e\":true},\"m\":{\"v\":\"324px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":13},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"start\":700,\"startRelative\":700,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":4000,\"start\":700,\"startRelative\":700,\"endWithSlide\":false,\"frameLength\":4000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":4300,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"9\"},\"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,\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"70px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\",\"e\":true},\"t\":{\"v\":\"100\",\"e\":true},\"m\":{\"v\":\"100\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"10\":{\"text\":\"BY ENGAGING FUTURES\",\"alias\":\"Club\",\"uid\":10,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"407px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"118px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"497px\",\"e\":true},\"n\":{\"v\":\"427px\",\"e\":true},\"t\":{\"v\":\"427px\",\"e\":true},\"m\":{\"v\":\"401px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":14},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1000,\"start\":300,\"startRelative\":300,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":300,\"startRelative\":300,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"},\"explodinglayers\":{\"use\":true,\"direction\":\"right\",\"power\":\"25\",\"randomsize\":true,\"randomspeed\":true,\"sync\":true,\"speed\":\"5\",\"type\":\"triangle\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"10\"},\"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,10,0,10],\"e\":true},\"n\":{\"v\":[0,10,0,10],\"e\":true},\"t\":{\"v\":[0,10,0,10],\"e\":true},\"m\":{\"v\":[0,10,0,10],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"40px\",\"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\":\"#000000\",\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"16\":{\"text\":\"#FUTURES & FORESIGHT | #GOVERNANCE | #POLITY | #TECHNOLOGY\",\"alias\":\"Feature\",\"uid\":16,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"710px\",\"e\":true},\"n\":{\"v\":\"540px\",\"e\":true},\"t\":{\"v\":\"590px\",\"e\":true},\"m\":{\"v\":\"525px\",\"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}},\"position\":\"relative\",\"zIndex\":19},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"8\"},\"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,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"4px\",\"e\":true},\"n\":{\"v\":\"4px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"18\":{\"subtype\":\"roundbutton\",\"text\":\"EMERGING ISSUES\",\"alias\":\"Btn\",\"uid\":18,\"version\":\"6.2.0\",\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\",\"e\":true},\"t\":{\"v\":\"500px\",\"e\":true},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"500px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"37px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"754px\",\"e\":true},\"n\":{\"v\":\"650px\",\"e\":true},\"t\":{\"v\":\"730px\",\"e\":true},\"m\":{\"v\":\"600px\",\"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}},\"position\":\"relative\",\"zIndex\":22},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":22,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1200,\"start\":1500,\"startRelative\":1500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1200,\"start\":1500,\"startRelative\":1500,\"endWithSlide\":false,\"frameLength\":1200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"},\"explodinglayers\":{\"use\":true,\"density\":\"2\",\"direction\":\"right\",\"power\":\"50\",\"randomsize\":true,\"randomspeed\":true,\"sync\":true,\"size\":\"10\",\"speed\":\"5\",\"type\":\"triangle\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":6300,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"9\"},\"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\":[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,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\",\"e\":true},\"t\":{\"v\":\"900\",\"e\":true},\"m\":{\"v\":\"900\",\"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\":\"60px\",\"e\":true},\"m\":{\"v\":\"60px\",\"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\":\"#000000\",\"borderColor\":\"rgba(0,0,0,1)\",\"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\":{\"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\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"rgba(0,0,0,1)\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":\"\",\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"21\":{\"text\":\"#SOCIAL EQUITY | #ENVIRONMENTAL FUTURES | #LEGISLATIVE GUIDANCE  \",\"alias\":\"Copy Feature\",\"uid\":21,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"14px\"}},\"y\":{\"d\":{\"v\":\"647px\",\"e\":true},\"n\":{\"v\":\"647px\"},\"t\":{\"v\":\"647px\"},\"m\":{\"v\":\"647px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"position\":\"relative\",\"zIndex\":17},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"8\"},\"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,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"4px\",\"e\":true},\"n\":{\"v\":\"4px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"22\":{\"text\":\"#ECONOMIES | #CULTURE, CONSUMPTION, CITIES | #TRANSPORT \",\"alias\":\"Copy Feature\",\"uid\":22,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"678px\",\"e\":true},\"n\":{\"v\":\"540px\",\"e\":true},\"t\":{\"v\":\"590px\",\"e\":true},\"m\":{\"v\":\"525px\",\"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}},\"position\":\"relative\",\"zIndex\":18},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":18,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"8\"},\"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,\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"4px\",\"e\":true},\"n\":{\"v\":\"4px\",\"e\":true},\"t\":{\"v\":\"4px\",\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(21, 10, 1, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq2.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":900,\"imageHeight\":1200,\"imageRatio\":0.75,\"imageId\":126},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project1.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide1.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq2.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":126},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"01\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"CARBON BASED\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Photography Project\\nMarch 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(22, 10, 2, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq1.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1598,\"imageHeight\":1200,\"imageRatio\":1.3316666666666668,\"imageId\":128},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project2.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide2.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq1.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":128},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"02\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"LIQUID DREAMS\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Photography Project\\nApril 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(23, 10, 3, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq4.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1176,\"imageHeight\":1200,\"imageRatio\":0.98,\"imageId\":130},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project3.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide3.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq4.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":130},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"03\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"LOW RIDER\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Photography Project\\nFebruary 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(24, 10, 4, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"html5\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/Asteroids.jpg\",\"imageLib\":\"objectlibrary\",\"mpeg\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/objects\\/Asteroids.mp4\",\"videoId\":47,\"imageWidth\":640,\"imageHeight\":800,\"imageRatio\":0.8,\"imageId\":132},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project4.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide4.jpg\"}}', '{\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"04\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"ASTEROID FIELD\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Videography Project\\nSeptember 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"30\":{\"text\":\"\",\"alias\":\"Blur-video\",\"uid\":30,\"media\":{\"mediaType\":\"html5\",\"posterUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/objects\\/Asteroids.jpg\",\"nointeraction\":true,\"mp4Url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/objects\\/Asteroids.mp4\",\"id\":47,\"largeControls\":false,\"nextSlideAtEnd\":false,\"stopAllVideo\":false,\"imageLib\":\"objectlibrary\",\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":1920,\"originalHeight\":1080,\"aspectRatio\":{\"d\":{\"v\":1.7777777777777777},\"n\":{\"v\":1.7777777777777777},\"t\":{\"v\":1.7777777777777777},\"m\":{\"v\":1.7777777777777777}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000,\"auto\":false}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"video\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(25, 10, 5, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq5.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1019,\"imageHeight\":1200,\"imageRatio\":0.8491666666666666,\"imageId\":134},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project5.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide5.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq5.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":134},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"05\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"SPACED OUT\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Webdesign Project\\nFebruary 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(26, 10, 6, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq6.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":800,\"imageHeight\":1200,\"imageRatio\":0.6666666666666666,\"imageId\":136},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project6.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide6.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq6.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":136},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"06\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"NEW MONA LISA\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Webdesign Project\\nFebruary 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(27, 10, 7, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq3.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1743,\"imageHeight\":1200,\"imageRatio\":1.4525,\"imageId\":138},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project7.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide7.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq3.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":138},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"07\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"MAJESTIC HILLS\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Webdesign Project\\nFebruary 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(28, 11, 1, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq2.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":900,\"imageHeight\":1200,\"imageRatio\":0.75,\"imageId\":126},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project1.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide1.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq2.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":126},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"01\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"CARBON BASED\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Photography Project\\nMarch 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(29, 11, 2, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq1.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1598,\"imageHeight\":1200,\"imageRatio\":1.3316666666666668,\"imageId\":128},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project2.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide2.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq1.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":128},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"02\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"LIQUID DREAMS\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Photography Project\\nApril 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(30, 11, 3, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq4.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1176,\"imageHeight\":1200,\"imageRatio\":0.98,\"imageId\":130},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project3.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide3.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq4.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":130},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"03\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"LOW RIDER\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Photography Project\\nFebruary 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(31, 11, 4, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"html5\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/Asteroids.jpg\",\"imageLib\":\"objectlibrary\",\"mpeg\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/objects\\/Asteroids.mp4\",\"videoId\":47,\"imageWidth\":640,\"imageHeight\":800,\"imageRatio\":0.8,\"imageId\":132},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project4.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide4.jpg\"}}', '{\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"04\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"ASTEROID FIELD\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Videography Project\\nSeptember 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"30\":{\"text\":\"\",\"alias\":\"Blur-video\",\"uid\":30,\"media\":{\"mediaType\":\"html5\",\"posterUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/objects\\/Asteroids.jpg\",\"nointeraction\":true,\"mp4Url\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/objects\\/Asteroids.mp4\",\"id\":47,\"largeControls\":false,\"nextSlideAtEnd\":false,\"stopAllVideo\":false,\"imageLib\":\"objectlibrary\",\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":1920,\"originalHeight\":1080,\"aspectRatio\":{\"d\":{\"v\":1.7777777777777777},\"n\":{\"v\":1.7777777777777777},\"t\":{\"v\":1.7777777777777777},\"m\":{\"v\":1.7777777777777777}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000,\"auto\":false}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"video\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(32, 11, 5, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq5.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1019,\"imageHeight\":1200,\"imageRatio\":0.8491666666666666,\"imageId\":134},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project5.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide5.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq5.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":134},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"05\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"SPACED OUT\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Webdesign Project\\nFebruary 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(33, 11, 6, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq6.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":800,\"imageHeight\":1200,\"imageRatio\":0.6666666666666666,\"imageId\":136},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project6.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide6.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq6.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":136},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"06\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"NEW MONA LISA\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Webdesign Project\\nFebruary 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(34, 11, 7, '{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq3.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1743,\"imageHeight\":1200,\"imageRatio\":1.4525,\"imageId\":138},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"nav\":{\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}},\"version\":\"6.2.0\",\"thumb\":{\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/project7.jpg\",\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/project-carousel\\/slide7.jpg\"}}', '{\"0\":{\"text\":\"\",\"alias\":\"Blur-image\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"7px\"},\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(0,0,0,0.5)\",\"backgroundImage\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/project-carousel\\/hq3.jpg\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"medialibrary\",\"backgroundImageId\":138},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"\",\"alias\":\"Overlay\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"clip\":\"50%\"},\"timeline\":{\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"backgroundColor\":\"rgba(255, 255, 255, 0.05)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"bgimagelib\":\"\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"07\",\"alias\":\"Number\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"40px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"0deg\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"alwaysOnCarousel\":true},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"MAJESTIC HILLS\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":\"1\",\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"transform\":{\"rotationY\":\"0deg\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"2000\",\"endWithSlide\":false,\"frameLength\":2000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true,\"origin\":\"cv\"},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Staatliches\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationZ\":\"-90deg\",\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Webdesign Project\\nFebruary 2019\\nfor ThemePunch\",\"alias\":\"Description\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"v\":\"65px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"13px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"View\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"clip\":\"0%\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":\"1000\",\"endWithSlide\":false,\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":1000,\"auto\":true}}},\"clipPath\":{\"use\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"borderWidthLock\":true,\"padding\":{\"d\":{\"v\":[0,30,0,30],\"e\":true},\"n\":{\"v\":[0,25,0,25],\"e\":true},\"t\":{\"v\":[0,22,0,22],\"e\":true},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Inconsolata\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"11px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"cursor\":\"pointer\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":\"solid\",\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":\"300ms\",\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(35, 12, 1, '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":true,\"direction\":\"horizontal\",\"delay\":500,\"time\":750,\"easing\":\"power2.inOut\",\"animateOut\":\"fade\",\"moveTo\":{\"d\":{\"v\":50,\"e\":false,\"u\":\"\"},\"n\":{\"v\":50,\"e\":false,\"u\":\"\"},\"t\":{\"v\":50,\"e\":false,\"u\":\"\"},\"m\":{\"v\":50,\"e\":false,\"u\":\"\"}},\"teaser\":{\"set\":\"none\",\"type\":\"repel\",\"distance\":5,\"speed\":1500,\"easing\":\"ease-in-out\",\"delay\":0},\"shift\":{\"set\":false,\"offset\":10,\"speed\":300,\"easing\":\"ease\",\"delay\":0},\"bg\":{\"type\":\"image\",\"color\":\"#e7e7e7\",\"externalSrc\":\"\",\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/after-bg.jpg\",\"imageId\":144,\"imageSourceType\":\"\",\"mpeg\":\"\",\"vimeo\":\"\",\"youtube\":\"\",\"width\":\"\",\"height\":\"\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"dottedOverlay\":\"none\",\"startAt\":\"\",\"endAt\":\"\",\"forceCover\":true,\"forceRewind\":true,\"loop\":\"none\",\"mute\":true,\"nextSlideAtEnd\":false,\"ratio\":\"16:9\",\"speed\":1,\"volume\":\"\"},\"videoId\":\"\"}}},\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/before-bg.jpg\",\"imageId\":140},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/beforeafter-thumb.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/beforeafter-thumb.jpg\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"slidingoverlaydown\"],\"slots\":[\"default\"],\"duration\":[\"1000ms\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[\"default\"]},\"version\":\"6.2.0\"}', '{\"2\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"\",\"alias\":\"Before Car Reflection\",\"uid\":2,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/before-car.png\",\"loaded\":true,\"imageId\":142},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"778px\"},\"m\":{\"v\":\"480px\"}},\"height\":{\"d\":{\"v\":\"290px\",\"e\":true},\"n\":{\"v\":\"290px\"},\"t\":{\"v\":\"225px\"},\"m\":{\"v\":\"138px\"}},\"originalWidth\":1000,\"originalHeight\":290,\"aspectRatio\":{\"d\":{\"v\":3.4482758620689653},\"n\":{\"v\":3.4482758620689653},\"t\":{\"v\":3.4482758620689653},\"m\":{\"v\":3.4482758620689653}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"290px\",\"e\":true},\"t\":{\"v\":\"225px\"},\"m\":{\"v\":\"138px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":13},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"5px\"},\"transform\":{\"x\":{\"d\":{\"v\":\"right\"},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"opacity\":\"1\"},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"3px\"},\"timeline\":{\"speed\":\"1500\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1500}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationX\":\"180deg\",\"opacity\":\"0.12\",\"filter\":{\"blendMode\":\"lighten\"},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\",\"version\":\"6.2.0\"},\"3\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"THE PAST\",\"alias\":\"Before Text\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"460px\",\"e\":true},\"n\":{\"v\":\"-150px\",\"e\":true},\"t\":{\"v\":\"-116px\"},\"m\":{\"v\":\"-71px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":5},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":5},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"opacity\":\"1\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"-100%\",\"e\":true},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Anton\",\"fontSize\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"250px\",\"e\":true},\"t\":{\"v\":\"194px\"},\"m\":{\"v\":\"119px\"}},\"letterSpacing\":{\"d\":{\"v\":\"-7px\",\"e\":true},\"n\":{\"v\":\"-7px\"},\"t\":{\"v\":\"-5px\"},\"m\":{\"v\":\"-3px\"}},\"lineHeight\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"233px\"},\"m\":{\"v\":\"143px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"6\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"\",\"alias\":\"Before bottom shape\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"#2\\/3#\",\"e\":true},\"t\":{\"v\":\"#2\\/3#\"},\"m\":{\"v\":\"#2\\/3#\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666667},\"n\":{\"v\":1.6666666666667},\"t\":{\"v\":1.6666666666667},\"m\":{\"v\":1.6666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":8},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"backgroundColor\":\"#000000\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"7\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"\",\"alias\":\"After bottom shape\",\"uid\":7,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"#2\\/3#\",\"e\":true},\"t\":{\"v\":\"#2\\/3#\"},\"m\":{\"v\":\"#2\\/3#\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666667},\"n\":{\"v\":1.6666666666667},\"t\":{\"v\":1.6666666666667},\"m\":{\"v\":1.6666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":15},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"backgroundColor\":\"#000000\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"visible\":false},\"type\":\"shape\",\"version\":\"6.2.0\"},\"8\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"\",\"alias\":\"After Car Image\",\"uid\":8,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/after-car.png\",\"loaded\":true,\"imageId\":143},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"778px\"},\"m\":{\"v\":\"480px\"}},\"height\":{\"d\":{\"v\":\"287px\",\"e\":true},\"n\":{\"v\":\"287px\"},\"t\":{\"v\":\"223px\"},\"m\":{\"v\":\"137px\"}},\"originalWidth\":1000,\"originalHeight\":287,\"aspectRatio\":{\"d\":{\"v\":3.484320557491289},\"n\":{\"v\":3.484320557491289},\"t\":{\"v\":3.484320557491289},\"m\":{\"v\":3.484320557491289}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"18px\"}},\"y\":{\"d\":{\"v\":\"330px\",\"e\":true},\"n\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":19},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":19},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"visible\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"9\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"\",\"alias\":\"After Car Reflection\",\"uid\":9,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/after-car.png\",\"loaded\":true,\"imageId\":143},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"778px\"},\"m\":{\"v\":\"480px\"}},\"height\":{\"d\":{\"v\":\"287px\",\"e\":true},\"n\":{\"v\":\"287px\"},\"t\":{\"v\":\"223px\"},\"m\":{\"v\":\"137px\"}},\"originalWidth\":1000,\"originalHeight\":287,\"aspectRatio\":{\"d\":{\"v\":3.484320557491289},\"n\":{\"v\":3.484320557491289},\"t\":{\"v\":3.484320557491289},\"m\":{\"v\":3.484320557491289}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"27px\"},\"m\":{\"v\":\"16px\"}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"287px\",\"e\":true},\"t\":{\"v\":\"223px\"},\"m\":{\"v\":\"137px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":20},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":20},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"3px\"},\"transform\":{\"opacity\":\"1\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"3px\"},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationX\":\"180deg\",\"opacity\":\"0.12\",\"filter\":{\"blendMode\":\"lighten\"},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"visible\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"10\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"THE FUTURE\",\"alias\":\"After Text\",\"uid\":10,\"customCSS\":\"background: -webkit-linear-gradient(#fd0178, #d4048e); -webkit-background-clip: text; -webkit-text-fill-color: transparent;\",\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-50px\",\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"460px\",\"e\":true},\"n\":{\"v\":\"-150px\",\"e\":true},\"t\":{\"v\":\"-116px\"},\"m\":{\"v\":\"-71px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":18},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":18},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fd0178\",\"e\":true},\"n\":{\"v\":\"#fd0178\"},\"t\":{\"v\":\"#fd0178\"},\"m\":{\"v\":\"#fd0178\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Anton\",\"fontSize\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"250px\",\"e\":true},\"t\":{\"v\":\"194px\"},\"m\":{\"v\":\"119px\"}},\"letterSpacing\":{\"d\":{\"v\":\"-7px\",\"e\":true},\"n\":{\"v\":\"-7px\"},\"t\":{\"v\":\"-5px\"},\"m\":{\"v\":\"-3px\"}},\"lineHeight\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"233px\"},\"m\":{\"v\":\"143px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"12\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"\",\"alias\":\"Before Car Image\",\"uid\":12,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/before-car.png\",\"loaded\":true,\"imageId\":142},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"778px\"},\"m\":{\"v\":\"480px\"}},\"height\":{\"d\":{\"v\":\"290px\",\"e\":true},\"n\":{\"v\":\"290px\"},\"t\":{\"v\":\"225px\"},\"m\":{\"v\":\"138px\"}},\"originalWidth\":1000,\"originalHeight\":290,\"aspectRatio\":{\"d\":{\"v\":3.4482758620689653},\"n\":{\"v\":3.4482758620689653},\"t\":{\"v\":3.4482758620689653},\"m\":{\"v\":3.4482758620689653}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"326px\",\"e\":true},\"n\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":12},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"5px\"},\"transform\":{\"x\":{\"d\":{\"v\":\"right\"},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"opacity\":\"1\"},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"1500\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1500}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(36, 13, 1, '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":true,\"direction\":\"horizontal\",\"delay\":500,\"time\":750,\"easing\":\"power2.inOut\",\"animateOut\":\"fade\",\"moveTo\":{\"d\":{\"v\":50,\"e\":false,\"u\":\"\"},\"n\":{\"v\":50,\"e\":false,\"u\":\"\"},\"t\":{\"v\":50,\"e\":false,\"u\":\"\"},\"m\":{\"v\":50,\"e\":false,\"u\":\"\"}},\"teaser\":{\"set\":\"none\",\"type\":\"repel\",\"distance\":5,\"speed\":1500,\"easing\":\"ease-in-out\",\"delay\":0},\"shift\":{\"set\":false,\"offset\":10,\"speed\":300,\"easing\":\"ease\",\"delay\":0},\"bg\":{\"type\":\"image\",\"color\":\"#e7e7e7\",\"externalSrc\":\"\",\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/after-bg.jpg\",\"imageId\":144,\"imageSourceType\":\"\",\"mpeg\":\"\",\"vimeo\":\"\",\"youtube\":\"\",\"width\":\"\",\"height\":\"\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"dottedOverlay\":\"none\",\"startAt\":\"\",\"endAt\":\"\",\"forceCover\":true,\"forceRewind\":true,\"loop\":\"none\",\"mute\":true,\"nextSlideAtEnd\":false,\"ratio\":\"16:9\",\"speed\":1,\"volume\":\"\"},\"videoId\":\"\"}}},\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/before-bg.jpg\",\"imageId\":140},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/beforeafter-thumb.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/beforeafter-thumb.jpg\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"slidingoverlaydown\"],\"slots\":[\"default\"],\"duration\":[\"1000ms\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[\"default\"]},\"version\":\"6.2.0\"}', '{\"2\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"\",\"alias\":\"Before Car Reflection\",\"uid\":2,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/before-car.png\",\"loaded\":true,\"imageId\":142},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"778px\"},\"m\":{\"v\":\"480px\"}},\"height\":{\"d\":{\"v\":\"290px\",\"e\":true},\"n\":{\"v\":\"290px\"},\"t\":{\"v\":\"225px\"},\"m\":{\"v\":\"138px\"}},\"originalWidth\":1000,\"originalHeight\":290,\"aspectRatio\":{\"d\":{\"v\":3.4482758620689653},\"n\":{\"v\":3.4482758620689653},\"t\":{\"v\":3.4482758620689653},\"m\":{\"v\":3.4482758620689653}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"290px\",\"e\":true},\"t\":{\"v\":\"225px\"},\"m\":{\"v\":\"138px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":13},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"5px\"},\"transform\":{\"x\":{\"d\":{\"v\":\"right\"},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"opacity\":\"1\"},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"3px\"},\"timeline\":{\"speed\":\"1500\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1500}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationX\":\"180deg\",\"opacity\":\"0.12\",\"filter\":{\"blendMode\":\"lighten\"},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\",\"version\":\"6.2.0\"},\"3\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"THE PAST\",\"alias\":\"Before Text\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"460px\",\"e\":true},\"n\":{\"v\":\"-150px\",\"e\":true},\"t\":{\"v\":\"-116px\"},\"m\":{\"v\":\"-71px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":5},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":5},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"opacity\":\"1\"},\"mask\":{\"use\":true,\"x\":{\"d\":{\"v\":\"-100%\",\"e\":true},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Anton\",\"fontSize\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"250px\",\"e\":true},\"t\":{\"v\":\"194px\"},\"m\":{\"v\":\"119px\"}},\"letterSpacing\":{\"d\":{\"v\":\"-7px\",\"e\":true},\"n\":{\"v\":\"-7px\"},\"t\":{\"v\":\"-5px\"},\"m\":{\"v\":\"-3px\"}},\"lineHeight\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"233px\"},\"m\":{\"v\":\"143px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"6\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"\",\"alias\":\"Before bottom shape\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"#2\\/3#\",\"e\":true},\"t\":{\"v\":\"#2\\/3#\"},\"m\":{\"v\":\"#2\\/3#\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666667},\"n\":{\"v\":1.6666666666667},\"t\":{\"v\":1.6666666666667},\"m\":{\"v\":1.6666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":8},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"backgroundColor\":\"#000000\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\",\"version\":\"6.2.0\"},\"7\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"\",\"alias\":\"After bottom shape\",\"uid\":7,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"400px\",\"e\":true},\"n\":{\"v\":\"#2\\/3#\",\"e\":true},\"t\":{\"v\":\"#2\\/3#\"},\"m\":{\"v\":\"#2\\/3#\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666667},\"n\":{\"v\":1.6666666666667},\"t\":{\"v\":1.6666666666667},\"m\":{\"v\":1.6666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":15},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"bottom\"},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"backgroundColor\":\"#000000\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"visible\":false},\"type\":\"shape\",\"version\":\"6.2.0\"},\"8\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"\",\"alias\":\"After Car Image\",\"uid\":8,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/after-car.png\",\"loaded\":true,\"imageId\":143},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"778px\"},\"m\":{\"v\":\"480px\"}},\"height\":{\"d\":{\"v\":\"287px\",\"e\":true},\"n\":{\"v\":\"287px\"},\"t\":{\"v\":\"223px\"},\"m\":{\"v\":\"137px\"}},\"originalWidth\":1000,\"originalHeight\":287,\"aspectRatio\":{\"d\":{\"v\":3.484320557491289},\"n\":{\"v\":3.484320557491289},\"t\":{\"v\":3.484320557491289},\"m\":{\"v\":3.484320557491289}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"18px\"}},\"y\":{\"d\":{\"v\":\"330px\",\"e\":true},\"n\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":19},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":19},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"visible\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"9\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"\",\"alias\":\"After Car Reflection\",\"uid\":9,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/after-car.png\",\"loaded\":true,\"imageId\":143},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"778px\"},\"m\":{\"v\":\"480px\"}},\"height\":{\"d\":{\"v\":\"287px\",\"e\":true},\"n\":{\"v\":\"287px\"},\"t\":{\"v\":\"223px\"},\"m\":{\"v\":\"137px\"}},\"originalWidth\":1000,\"originalHeight\":287,\"aspectRatio\":{\"d\":{\"v\":3.484320557491289},\"n\":{\"v\":3.484320557491289},\"t\":{\"v\":3.484320557491289},\"m\":{\"v\":3.484320557491289}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"27px\"},\"m\":{\"v\":\"16px\"}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"287px\",\"e\":true},\"t\":{\"v\":\"223px\"},\"m\":{\"v\":\"137px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":20},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":20},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"3px\"},\"transform\":{\"opacity\":\"1\"},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"filter\":{\"use\":true,\"blur\":\"3px\"},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"rotationX\":\"180deg\",\"opacity\":\"0.12\",\"filter\":{\"blendMode\":\"lighten\"},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"visible\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"10\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"after\"}},\"text\":\"THE FUTURE\",\"alias\":\"After Text\",\"uid\":10,\"customCSS\":\"background: -webkit-linear-gradient(#fd0178, #d4048e); -webkit-background-clip: text; -webkit-text-fill-color: transparent;\",\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-50px\",\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"460px\",\"e\":true},\"n\":{\"v\":\"-150px\",\"e\":true},\"t\":{\"v\":\"-116px\"},\"m\":{\"v\":\"-71px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":18},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":18},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fd0178\",\"e\":true},\"n\":{\"v\":\"#fd0178\"},\"t\":{\"v\":\"#fd0178\"},\"m\":{\"v\":\"#fd0178\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Anton\",\"fontSize\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"250px\",\"e\":true},\"t\":{\"v\":\"194px\"},\"m\":{\"v\":\"119px\"}},\"letterSpacing\":{\"d\":{\"v\":\"-7px\",\"e\":true},\"n\":{\"v\":\"-7px\"},\"t\":{\"v\":\"-5px\"},\"m\":{\"v\":\"-3px\"}},\"lineHeight\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"233px\"},\"m\":{\"v\":\"143px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"visible\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"12\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"\",\"alias\":\"Before Car Image\",\"uid\":12,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/Classic-Cars-Evolution\\/before-car.png\",\"loaded\":true,\"imageId\":142},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"778px\"},\"m\":{\"v\":\"480px\"}},\"height\":{\"d\":{\"v\":\"290px\",\"e\":true},\"n\":{\"v\":\"290px\"},\"t\":{\"v\":\"225px\"},\"m\":{\"v\":\"138px\"}},\"originalWidth\":1000,\"originalHeight\":290,\"aspectRatio\":{\"d\":{\"v\":3.4482758620689653},\"n\":{\"v\":3.4482758620689653},\"t\":{\"v\":3.4482758620689653},\"m\":{\"v\":3.4482758620689653}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"326px\",\"e\":true},\"n\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":12},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"5px\"},\"transform\":{\"x\":{\"d\":{\"v\":\"right\"},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"opacity\":\"1\"},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":\"1500\",\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1500}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"lineHeight\":{\"t\":{\"v\":\"19\"},\"m\":{\"v\":\"11\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(37, 14, 2, '{\"addOns\":{\"revslider-slicey-addon\":{\"shadow\":{\"blur\":\"0\",\"color\":\"transparent\",\"strength\":\"0\"}}},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/woman2.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/woman2.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/websiteintro\\/slide1.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[900]},\"panzoom\":{\"set\":true,\"blurStart\":\"20\",\"duration\":\"5000\",\"ease\":\"power2.inOut\",\"fitEnd\":\"150\"},\"version\":\"6.2.0\"}', '{\"9\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big1\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-112px\",\"e\":true},\"n\":{\"v\":\"-43px\",\"e\":true},\"t\":{\"v\":\"-81px\",\"e\":true},\"m\":{\"v\":\"44px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-219px\",\"e\":true},\"n\":{\"v\":\"-184px\",\"e\":true},\"t\":{\"v\":\"-185px\",\"e\":true},\"m\":{\"v\":\"182px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3700},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"10\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big2\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"151px\",\"e\":true},\"n\":{\"v\":\"228px\",\"e\":true},\"t\":{\"v\":\"224px\",\"e\":true},\"m\":{\"v\":\"117px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-212px\",\"e\":true},\"n\":{\"v\":\"-159px\",\"e\":true},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"-222px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":350},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":350,\"startRelative\":350},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":350,\"startRelative\":350},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3650},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"29\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big3\",\"uid\":29,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-442px\",\"e\":true},\"t\":{\"v\":\"104px\",\"e\":true},\"m\":{\"v\":\"-159px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"165px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"219px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":400,\"startRelative\":400},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"12\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big4\",\"uid\":12,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"162px\",\"e\":true},\"n\":{\"v\":\"216px\",\"e\":true},\"t\":{\"v\":\"-239px\",\"e\":true},\"m\":{\"v\":\"193px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"195px\",\"e\":true},\"n\":{\"v\":\"245px\",\"e\":true},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"146px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":450,\"startRelative\":450},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3550},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"34\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big5\",\"uid\":34,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-186px\",\"e\":true},\"n\":{\"v\":\"-119px\",\"e\":true},\"t\":{\"v\":\"273px\",\"e\":true},\"m\":{\"v\":\"-223px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"269px\",\"e\":true},\"n\":{\"v\":\"217px\",\"e\":true},\"t\":{\"v\":\"-121px\",\"e\":true},\"m\":{\"v\":\"69px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":500},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3500},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"11\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big6\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-325px\",\"e\":true},\"n\":{\"v\":\"292px\",\"e\":true},\"t\":{\"v\":\"162px\",\"e\":true},\"m\":{\"v\":\"-34px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"55px\",\"e\":true},\"t\":{\"v\":\"-275px\",\"e\":true},\"m\":{\"v\":\"-174px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":550},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":550,\"startRelative\":550},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3450},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"27\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig1\",\"uid\":27,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"300px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-429px\",\"e\":true},\"n\":{\"v\":\"523px\",\"e\":true},\"t\":{\"v\":\"-190px\",\"e\":true},\"m\":{\"v\":\"-306px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-327px\",\"e\":true},\"n\":{\"v\":\"173px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"480px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":320},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":320,\"startRelative\":320},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":320,\"startRelative\":320},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3680},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"28\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig2\",\"uid\":28,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"422px\",\"e\":true},\"n\":{\"v\":\"-409px\",\"e\":true},\"t\":{\"v\":\"208px\",\"e\":true},\"m\":{\"v\":\"225px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-245px\",\"e\":true},\"n\":{\"v\":\"-72px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"-14px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":360},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":360,\"startRelative\":360},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":360,\"startRelative\":360},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3640},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"30\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig3\",\"uid\":30,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"549px\",\"e\":true},\"n\":{\"v\":\"-445px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"58px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"236px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"316px\",\"e\":true},\"m\":{\"v\":\"287px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":13,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":400,\"startRelative\":400},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600},\"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\":\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"31\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig4\",\"uid\":31,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-522px\",\"e\":true},\"n\":{\"v\":\"492px\",\"e\":true},\"t\":{\"v\":\"-151px\",\"e\":true},\"m\":{\"v\":\"262px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-180px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"-141px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":14,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":440},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":440,\"startRelative\":440},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":440,\"startRelative\":440},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3560},\"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\":\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"32\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig5\",\"uid\":32,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-588px\",\"e\":true},\"n\":{\"v\":\"-375px\",\"e\":true},\"t\":{\"v\":\"-253px\",\"e\":true},\"m\":{\"v\":\"-207px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"-328px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"-111px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":15,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":480,\"startRelative\":480},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3520},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"33\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Long1\",\"uid\":33,\"size\":{\"width\":{\"d\":{\"v\":\"450px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"450px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-37px\",\"e\":true},\"n\":{\"v\":\"73px\",\"e\":true},\"t\":{\"v\":\"-76px\",\"e\":true},\"m\":{\"v\":\"-100px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-401px\",\"e\":true},\"n\":{\"v\":\"-340px\",\"e\":true},\"t\":{\"v\":\"-293px\",\"e\":true},\"m\":{\"v\":\"-246px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":16,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":310},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":310,\"startRelative\":310},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":310,\"startRelative\":310},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3690},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"35\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Long3\",\"uid\":35,\"size\":{\"width\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"350px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"v\":\"186px\",\"e\":true},\"n\":{\"v\":\"38px\",\"e\":true},\"t\":{\"v\":\"116px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"363px\",\"e\":true},\"n\":{\"v\":\"402px\",\"e\":true},\"t\":{\"v\":\"190px\",\"e\":true},\"m\":{\"v\":\"395px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":17,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":340},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":340,\"startRelative\":340},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":340,\"startRelative\":340},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3660},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\" \",\"alias\":\"BGOVERLAY\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"cover\",\"originalWidth\":\"100%\",\"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\":18,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":18,\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"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\":\"power4.out\",\"speed\":500,\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"start\":9000,\"startRelative\":8490,\"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(0, 0, 0, 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\"},\"visibility\":{\"visible\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Making your<br\\/>\\nIdeas possible.\",\"alias\":\"TITLE\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"481px\",\"e\":true},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\"},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":19,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"-5px\",\"e\":true},\"n\":{\"v\":\"-5px\"},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"v\":\"-5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"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\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"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\"},\"3\":{\"text\":\"This Slider Revolution Website Template \\nis available for free now!\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"480px\"},\"t\":{\"v\":\"480px\"},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"480px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":20,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":20,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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}},\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"35px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"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\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"GET STARTED\",\"alias\":\"BUTTON\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"e\":true}},\"originalWidth\":\"250px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"160px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":21,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":21,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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\":[\"0px\",\"50px\",\"0px\",\"50px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]},\"t\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]},\"m\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"18px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"#57ca85\",\"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,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"#57ca85\",\"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(255,255,255,1)\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":38,\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\",\"twitter_text\":\"\",\"twitter_link\":\"\",\"facebook_link\":\"\",\"googleplus_link\":\"\",\"linkedin_link\":\"\",\"linkedin_link_title\":\"\",\"linkedin_link_summary\":\"\",\"pinterest_link\":\"\",\"pinterest_image\":\"\",\"pinterest_link_description\":\"\",\"email_link\":\"\",\"email_link_url\":\"\",\"email_link_subject\":\"\",\"email_link_body\":\"\"}],\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(38, 14, 3, '{\"addOns\":{\"revslider-slicey-addon\":{\"shadow\":{\"blur\":\"0\",\"color\":\"transparent\",\"strength\":\"0\"}}},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/deskbg.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/deskbg.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/websiteintro\\/slide2.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[900]},\"panzoom\":{\"set\":true,\"blurStart\":\"20\",\"duration\":\"5000\",\"ease\":\"power2.inOut\",\"fitEnd\":\"150\"},\"version\":\"6.2.0\"}', '{\"9\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big1\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-112px\",\"e\":true},\"n\":{\"v\":\"-43px\",\"e\":true},\"t\":{\"v\":\"-81px\",\"e\":true},\"m\":{\"v\":\"44px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-219px\",\"e\":true},\"n\":{\"v\":\"-184px\",\"e\":true},\"t\":{\"v\":\"-185px\",\"e\":true},\"m\":{\"v\":\"182px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3700},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"10\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big2\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"151px\",\"e\":true},\"n\":{\"v\":\"228px\",\"e\":true},\"t\":{\"v\":\"224px\",\"e\":true},\"m\":{\"v\":\"117px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-212px\",\"e\":true},\"n\":{\"v\":\"-159px\",\"e\":true},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"-222px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":350},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":350,\"startRelative\":350},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":350,\"startRelative\":350},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3650},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"29\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big3\",\"uid\":29,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-442px\",\"e\":true},\"t\":{\"v\":\"104px\",\"e\":true},\"m\":{\"v\":\"-159px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"165px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"219px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":400,\"startRelative\":400},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"12\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big4\",\"uid\":12,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"162px\",\"e\":true},\"n\":{\"v\":\"216px\",\"e\":true},\"t\":{\"v\":\"-239px\",\"e\":true},\"m\":{\"v\":\"193px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"195px\",\"e\":true},\"n\":{\"v\":\"245px\",\"e\":true},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"146px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":450,\"startRelative\":450},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3550},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"34\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big5\",\"uid\":34,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-186px\",\"e\":true},\"n\":{\"v\":\"-119px\",\"e\":true},\"t\":{\"v\":\"273px\",\"e\":true},\"m\":{\"v\":\"-223px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"269px\",\"e\":true},\"n\":{\"v\":\"217px\",\"e\":true},\"t\":{\"v\":\"-121px\",\"e\":true},\"m\":{\"v\":\"69px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":500},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3500},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"11\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big6\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-325px\",\"e\":true},\"n\":{\"v\":\"292px\",\"e\":true},\"t\":{\"v\":\"162px\",\"e\":true},\"m\":{\"v\":\"-34px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"55px\",\"e\":true},\"t\":{\"v\":\"-275px\",\"e\":true},\"m\":{\"v\":\"-174px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":550},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":550,\"startRelative\":550},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3450},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"27\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig1\",\"uid\":27,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"300px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-429px\",\"e\":true},\"n\":{\"v\":\"523px\",\"e\":true},\"t\":{\"v\":\"-190px\",\"e\":true},\"m\":{\"v\":\"-306px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-327px\",\"e\":true},\"n\":{\"v\":\"173px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"480px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":320},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":320,\"startRelative\":320},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":320,\"startRelative\":320},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3680},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"28\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig2\",\"uid\":28,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"422px\",\"e\":true},\"n\":{\"v\":\"-409px\",\"e\":true},\"t\":{\"v\":\"208px\",\"e\":true},\"m\":{\"v\":\"225px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-245px\",\"e\":true},\"n\":{\"v\":\"-72px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"-14px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":360},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":360,\"startRelative\":360},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":360,\"startRelative\":360},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3640},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"30\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig3\",\"uid\":30,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"549px\",\"e\":true},\"n\":{\"v\":\"-445px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"58px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"236px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"316px\",\"e\":true},\"m\":{\"v\":\"287px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":13,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":400,\"startRelative\":400},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600},\"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\":\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"31\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig4\",\"uid\":31,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-522px\",\"e\":true},\"n\":{\"v\":\"492px\",\"e\":true},\"t\":{\"v\":\"-151px\",\"e\":true},\"m\":{\"v\":\"262px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-180px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"-141px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":14,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":440},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":440,\"startRelative\":440},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":440,\"startRelative\":440},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3560},\"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\":\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"32\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig5\",\"uid\":32,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-588px\",\"e\":true},\"n\":{\"v\":\"-375px\",\"e\":true},\"t\":{\"v\":\"-253px\",\"e\":true},\"m\":{\"v\":\"-207px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"-328px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"-111px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":15,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":480,\"startRelative\":480},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3520},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"33\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Long1\",\"uid\":33,\"size\":{\"width\":{\"d\":{\"v\":\"450px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"450px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-37px\",\"e\":true},\"n\":{\"v\":\"73px\",\"e\":true},\"t\":{\"v\":\"-76px\",\"e\":true},\"m\":{\"v\":\"-100px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-401px\",\"e\":true},\"n\":{\"v\":\"-340px\",\"e\":true},\"t\":{\"v\":\"-293px\",\"e\":true},\"m\":{\"v\":\"-246px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":16,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":310},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":310,\"startRelative\":310},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":310,\"startRelative\":310},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3690},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"35\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Long3\",\"uid\":35,\"size\":{\"width\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"350px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"v\":\"186px\",\"e\":true},\"n\":{\"v\":\"38px\",\"e\":true},\"t\":{\"v\":\"116px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"363px\",\"e\":true},\"n\":{\"v\":\"402px\",\"e\":true},\"t\":{\"v\":\"190px\",\"e\":true},\"m\":{\"v\":\"395px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":17,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":340},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":340,\"startRelative\":340},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":340,\"startRelative\":340},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3660},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\" \",\"alias\":\"BGOVERLAY\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"cover\",\"originalWidth\":\"100%\",\"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\":18,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":18,\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"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\":\"power4.out\",\"speed\":500,\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"start\":9000,\"startRelative\":8490,\"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(0, 0, 0, 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\"},\"visibility\":{\"visible\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Exploring<br\\/>New Paths\",\"alias\":\"TITLE\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"481px\",\"e\":true},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\"},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":19,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"-5px\",\"e\":true},\"n\":{\"v\":\"-5px\"},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"v\":\"-5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"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\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"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\"},\"3\":{\"text\":\"Discover our 90+ Template Library and range of free Add-Ons.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"480px\"},\"t\":{\"v\":\"480px\"},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"480px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":20,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":20,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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}},\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"35px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"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\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"DIVE RIGHT IN\",\"alias\":\"BUTTON\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"e\":true}},\"originalWidth\":\"250px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"160px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":21,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":21,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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\":[\"0px\",\"50px\",\"0px\",\"50px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]},\"t\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]},\"m\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"18px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"#57ca85\",\"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,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"#57ca85\",\"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(255,255,255,1)\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":37,\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\",\"twitter_text\":\"\",\"twitter_link\":\"\",\"facebook_link\":\"\",\"googleplus_link\":\"\",\"linkedin_link\":\"\",\"linkedin_link_title\":\"\",\"linkedin_link_summary\":\"\",\"pinterest_link\":\"\",\"pinterest_image\":\"\",\"pinterest_link_description\":\"\",\"email_link\":\"\",\"email_link_url\":\"\",\"email_link_subject\":\"\",\"email_link_body\":\"\"}],\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(39, 14, 4, '{\"addOns\":{\"revslider-slicey-addon\":{\"shadow\":{\"blur\":\"0\",\"color\":\"transparent\",\"strength\":\"0\"}}},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/reachout_bg.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/reachout_bg.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/websiteintro\\/slide3.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[900]},\"panzoom\":{\"set\":true,\"blurStart\":\"20\",\"duration\":\"5000\",\"ease\":\"power2.inOut\",\"fitEnd\":\"150\"},\"version\":\"6.2.0\"}', '{\"9\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big1\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-112px\",\"e\":true},\"n\":{\"v\":\"-43px\",\"e\":true},\"t\":{\"v\":\"-81px\",\"e\":true},\"m\":{\"v\":\"44px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-219px\",\"e\":true},\"n\":{\"v\":\"-184px\",\"e\":true},\"t\":{\"v\":\"-185px\",\"e\":true},\"m\":{\"v\":\"182px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3700},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"10\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big2\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"151px\",\"e\":true},\"n\":{\"v\":\"228px\",\"e\":true},\"t\":{\"v\":\"224px\",\"e\":true},\"m\":{\"v\":\"117px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-212px\",\"e\":true},\"n\":{\"v\":\"-159px\",\"e\":true},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"-222px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":350},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":350,\"startRelative\":350},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":350,\"startRelative\":350},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3650},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"29\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big3\",\"uid\":29,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-442px\",\"e\":true},\"t\":{\"v\":\"104px\",\"e\":true},\"m\":{\"v\":\"-159px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"165px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"219px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":400,\"startRelative\":400},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"12\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big4\",\"uid\":12,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"162px\",\"e\":true},\"n\":{\"v\":\"216px\",\"e\":true},\"t\":{\"v\":\"-239px\",\"e\":true},\"m\":{\"v\":\"193px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"195px\",\"e\":true},\"n\":{\"v\":\"245px\",\"e\":true},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"146px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":450,\"startRelative\":450},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3550},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"34\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big5\",\"uid\":34,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-186px\",\"e\":true},\"n\":{\"v\":\"-119px\",\"e\":true},\"t\":{\"v\":\"273px\",\"e\":true},\"m\":{\"v\":\"-223px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"269px\",\"e\":true},\"n\":{\"v\":\"217px\",\"e\":true},\"t\":{\"v\":\"-121px\",\"e\":true},\"m\":{\"v\":\"69px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":500},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3500},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"11\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big6\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-325px\",\"e\":true},\"n\":{\"v\":\"292px\",\"e\":true},\"t\":{\"v\":\"162px\",\"e\":true},\"m\":{\"v\":\"-34px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"55px\",\"e\":true},\"t\":{\"v\":\"-275px\",\"e\":true},\"m\":{\"v\":\"-174px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":550},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":550,\"startRelative\":550},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3450},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"27\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig1\",\"uid\":27,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"300px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-429px\",\"e\":true},\"n\":{\"v\":\"523px\",\"e\":true},\"t\":{\"v\":\"-190px\",\"e\":true},\"m\":{\"v\":\"-306px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-327px\",\"e\":true},\"n\":{\"v\":\"173px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"480px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":320},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":320,\"startRelative\":320},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":320,\"startRelative\":320},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3680},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"28\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig2\",\"uid\":28,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"422px\",\"e\":true},\"n\":{\"v\":\"-409px\",\"e\":true},\"t\":{\"v\":\"208px\",\"e\":true},\"m\":{\"v\":\"225px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-245px\",\"e\":true},\"n\":{\"v\":\"-72px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"-14px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":360},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":360,\"startRelative\":360},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":360,\"startRelative\":360},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3640},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"30\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig3\",\"uid\":30,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"549px\",\"e\":true},\"n\":{\"v\":\"-445px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"58px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"236px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"316px\",\"e\":true},\"m\":{\"v\":\"287px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":13,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":400,\"startRelative\":400},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600},\"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\":\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"31\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig4\",\"uid\":31,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-522px\",\"e\":true},\"n\":{\"v\":\"492px\",\"e\":true},\"t\":{\"v\":\"-151px\",\"e\":true},\"m\":{\"v\":\"262px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-180px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"-141px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":14,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":440},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":440,\"startRelative\":440},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":440,\"startRelative\":440},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3560},\"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\":\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"32\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig5\",\"uid\":32,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-588px\",\"e\":true},\"n\":{\"v\":\"-375px\",\"e\":true},\"t\":{\"v\":\"-253px\",\"e\":true},\"m\":{\"v\":\"-207px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"-328px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"-111px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":15,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":480,\"startRelative\":480},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3520},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"33\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Long1\",\"uid\":33,\"size\":{\"width\":{\"d\":{\"v\":\"450px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"450px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-37px\",\"e\":true},\"n\":{\"v\":\"73px\",\"e\":true},\"t\":{\"v\":\"-76px\",\"e\":true},\"m\":{\"v\":\"-100px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-401px\",\"e\":true},\"n\":{\"v\":\"-340px\",\"e\":true},\"t\":{\"v\":\"-293px\",\"e\":true},\"m\":{\"v\":\"-246px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":16,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":310},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":310,\"startRelative\":310},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":310,\"startRelative\":310},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3690},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"35\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Long3\",\"uid\":35,\"size\":{\"width\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"350px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"v\":\"186px\",\"e\":true},\"n\":{\"v\":\"38px\",\"e\":true},\"t\":{\"v\":\"116px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"363px\",\"e\":true},\"n\":{\"v\":\"402px\",\"e\":true},\"t\":{\"v\":\"190px\",\"e\":true},\"m\":{\"v\":\"395px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":17,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":340},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":340,\"startRelative\":340},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":340,\"startRelative\":340},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3660},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\" \",\"alias\":\"BGOVERLAY\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"cover\",\"originalWidth\":\"100%\",\"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\":18,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":18,\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"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\":\"power4.out\",\"speed\":500,\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"start\":9000,\"startRelative\":8490,\"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(0, 0, 0, 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\"},\"visibility\":{\"visible\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Experience the<br\\/>\\nRevolution\",\"alias\":\"TITLE\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"481px\",\"e\":true},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\"},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":19,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"-5px\",\"e\":true},\"n\":{\"v\":\"-5px\"},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"v\":\"-5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"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\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"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\"},\"3\":{\"text\":\"Cutting edge features, tons of examples, regular security checks.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"480px\"},\"t\":{\"v\":\"480px\"},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"480px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":20,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":20,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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}},\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"35px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"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\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"BUY RVSLDR NOW\",\"alias\":\"BUTTON\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"e\":true}},\"originalWidth\":\"250px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"160px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":21,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":21,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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\":[\"0px\",\"50px\",\"0px\",\"50px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]},\"t\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]},\"m\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"18px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"#57ca85\",\"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,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"#57ca85\",\"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(255,255,255,1)\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"http:\\/\\/codecanyon.net\\/item\\/slider-revolution-responsive-wordpress-plugin\\/2751380?ref=themepunch&license=regular&open_purchase_for_item_id=2751380&purchasable=source\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":37,\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\",\"twitter_text\":\"\",\"twitter_link\":\"\",\"facebook_link\":\"\",\"googleplus_link\":\"\",\"linkedin_link\":\"\",\"linkedin_link_title\":\"\",\"linkedin_link_summary\":\"\",\"pinterest_link\":\"\",\"pinterest_image\":\"\",\"pinterest_link_description\":\"\",\"email_link\":\"\",\"email_link_url\":\"\",\"email_link_subject\":\"\",\"email_link_body\":\"\"}],\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(40, 15, 1, '{\"addOns\":{\"revslider-slicey-addon\":{\"shadow\":{\"blur\":\"0\",\"color\":\"transparent\",\"strength\":\"0\"}}},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/woman2.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"},\"lastLoadedImage\":{\"width\":1920,\"height\":1080,\"src\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/woman2.jpg\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/woman2.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/stickies-2852375__480.jpg\",\"customAdminThumbSrcId\":148,\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[\"default\"],\"duration\":[900],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"panzoom\":{\"set\":true,\"blurStart\":\"20\",\"duration\":\"5000\",\"ease\":\"power2.inOut\",\"fitEnd\":\"150\"}}', '{\"1\":{\"text\":\"\",\"alias\":\"Bgoverlay\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"100%\",\"originalHeight\":\"100%\",\"covermode\":\"cover\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":18},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":18,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"start\":9000,\"startRelative\":8490,\"endWithSlide\":true,\"frameLength\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"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(0, 0, 0, 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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"visible\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"2\":{\"text\":\"Making your<br\\/>\\nIdeas possible.\",\"alias\":\"Title\",\"uid\":2,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"481px\",\"e\":true},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\"},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":19},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"speed\":2000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":2000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"transform\":{\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\"},\"timeline\":{\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true,\"frameLength\":500},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"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],\"e\":false},\"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\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"-5px\",\"e\":true},\"n\":{\"v\":\"-5px\"},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"v\":\"-5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"3\":{\"text\":\"This Slider Revolution Website Template \\nis available for free now!\",\"alias\":\"Subtitle\",\"uid\":3,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"480px\"},\"t\":{\"v\":\"480px\"},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"480px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":20},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":20,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"speed\":2000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":2000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"transform\":{\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\"},\"timeline\":{\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true,\"frameLength\":500},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"35px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"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\",\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"GET STARTED\",\"alias\":\"Button\",\"uid\":7,\"version\":\"6.2.0\",\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"e\":true}},\"originalWidth\":\"250px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"160px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\"}},\"position\":\"relative\",\"zIndex\":21},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":21,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"timeline\":{\"speed\":2000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":2000,\"start\":1000,\"startRelative\":1000,\"endWithSlide\":false,\"frameLength\":2000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"transform\":{\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\"},\"timeline\":{\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true,\"frameLength\":500},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"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],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,50,0,50],\"e\":true},\"n\":{\"v\":[0,50,0,50],\"e\":false},\"t\":{\"v\":[0,50,0,50],\"e\":false},\"m\":{\"v\":[0,50,0,50],\"e\":false}},\"autolinebreak\":false,\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"18px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"#57ca85\",\"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,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"#57ca85\",\"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(255,255,255,1)\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":41,\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\",\"twitter_text\":\"\",\"twitter_link\":\"\",\"facebook_link\":\"\",\"googleplus_link\":\"\",\"linkedin_link\":\"\",\"linkedin_link_title\":\"\",\"linkedin_link_summary\":\"\",\"pinterest_link\":\"\",\"pinterest_image\":\"\",\"pinterest_link_description\":\"\",\"email_link\":\"\",\"email_link_url\":\"\",\"email_link_subject\":\"\",\"email_link_body\":\"\"}],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"9\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Big1\",\"uid\":9,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-112px\",\"e\":true},\"n\":{\"v\":\"-43px\",\"e\":true},\"t\":{\"v\":\"-81px\",\"e\":true},\"m\":{\"v\":\"44px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-219px\",\"e\":true},\"n\":{\"v\":\"-184px\",\"e\":true},\"t\":{\"v\":\"-185px\",\"e\":true},\"m\":{\"v\":\"182px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":5},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}},\"rotationX\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"0deg\"},\"timeline\":{\"speed\":1000,\"start\":300,\"startRelative\":300,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":300,\"startRelative\":300,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3700,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"10\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Big2\",\"uid\":10,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"200px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"151px\",\"e\":true},\"n\":{\"v\":\"228px\",\"e\":true},\"t\":{\"v\":\"224px\",\"e\":true},\"m\":{\"v\":\"117px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-212px\",\"e\":true},\"n\":{\"v\":\"-159px\",\"e\":true},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"-222px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":350,\"startRelative\":350,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":350,\"startRelative\":350,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3650,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":350},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"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],\"e\":false}},\"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\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"11\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Big6\",\"uid\":11,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"250px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-325px\",\"e\":true},\"n\":{\"v\":\"292px\",\"e\":true},\"t\":{\"v\":\"162px\",\"e\":true},\"m\":{\"v\":\"-34px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"55px\",\"e\":true},\"t\":{\"v\":\"-275px\",\"e\":true},\"m\":{\"v\":\"-174px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":550,\"startRelative\":550,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":550,\"startRelative\":550,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3450,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":550},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"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],\"e\":false}},\"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\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"12\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Big4\",\"uid\":12,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"162px\",\"e\":true},\"n\":{\"v\":\"216px\",\"e\":true},\"t\":{\"v\":\"-239px\",\"e\":true},\"m\":{\"v\":\"193px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"195px\",\"e\":true},\"n\":{\"v\":\"245px\",\"e\":true},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"146px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":450,\"startRelative\":450,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":450,\"startRelative\":450,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3550,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"27\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Verybig1\",\"uid\":27,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"300px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-429px\",\"e\":true},\"n\":{\"v\":\"523px\",\"e\":true},\"t\":{\"v\":\"-190px\",\"e\":true},\"m\":{\"v\":\"-306px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-327px\",\"e\":true},\"n\":{\"v\":\"173px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"480px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":11},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":320,\"startRelative\":320,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":320,\"startRelative\":320,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3680,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":320},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"28\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Verybig2\",\"uid\":28,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"422px\",\"e\":true},\"n\":{\"v\":\"-409px\",\"e\":true},\"t\":{\"v\":\"208px\",\"e\":true},\"m\":{\"v\":\"225px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-245px\",\"e\":true},\"n\":{\"v\":\"-72px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"-14px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":12},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":360,\"startRelative\":360,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":360,\"startRelative\":360,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3640,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":360},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"29\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Big3\",\"uid\":29,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-442px\",\"e\":true},\"t\":{\"v\":\"104px\",\"e\":true},\"m\":{\"v\":\"-159px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"165px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"219px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":400,\"startRelative\":400,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":400,\"startRelative\":400,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3600,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"30\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Verybig3\",\"uid\":30,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"549px\",\"e\":true},\"n\":{\"v\":\"-445px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"58px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"236px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"316px\",\"e\":true},\"m\":{\"v\":\"287px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":13},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":400,\"startRelative\":400,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":400,\"startRelative\":400,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3600,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"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],\"e\":false},\"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\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"31\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Verybig4\",\"uid\":31,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-522px\",\"e\":true},\"n\":{\"v\":\"492px\",\"e\":true},\"t\":{\"v\":\"-151px\",\"e\":true},\"m\":{\"v\":\"262px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-180px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"-141px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":14},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":440,\"startRelative\":440,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":440,\"startRelative\":440,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3560,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":440},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"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],\"e\":false},\"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\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"32\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Verybig5\",\"uid\":32,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-588px\",\"e\":true},\"n\":{\"v\":\"-375px\",\"e\":true},\"t\":{\"v\":\"-253px\",\"e\":true},\"m\":{\"v\":\"-207px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"-328px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"-111px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":15},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":480,\"startRelative\":480,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":480,\"startRelative\":480,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3520,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"33\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Long1\",\"uid\":33,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"450px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"450px\",\"originalHeight\":\"100px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-37px\",\"e\":true},\"n\":{\"v\":\"73px\",\"e\":true},\"t\":{\"v\":\"-76px\",\"e\":true},\"m\":{\"v\":\"-100px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-401px\",\"e\":true},\"n\":{\"v\":\"-340px\",\"e\":true},\"t\":{\"v\":\"-293px\",\"e\":true},\"m\":{\"v\":\"-246px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":16},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":310,\"startRelative\":310,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":310,\"startRelative\":310,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3690,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":310},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"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],\"e\":false}},\"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\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"34\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Big5\",\"uid\":34,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-186px\",\"e\":true},\"n\":{\"v\":\"-119px\",\"e\":true},\"t\":{\"v\":\"273px\",\"e\":true},\"m\":{\"v\":\"-223px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"269px\",\"e\":true},\"n\":{\"v\":\"217px\",\"e\":true},\"t\":{\"v\":\"-121px\",\"e\":true},\"m\":{\"v\":\"69px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":500,\"startRelative\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"35\":{\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"subtype\":\"slicey\",\"text\":\"\",\"alias\":\"Long3\",\"uid\":35,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"350px\",\"originalHeight\":\"100px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"186px\",\"e\":true},\"n\":{\"v\":\"38px\",\"e\":true},\"t\":{\"v\":\"116px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"363px\",\"e\":true},\"n\":{\"v\":\"402px\",\"e\":true},\"t\":{\"v\":\"190px\",\"e\":true},\"m\":{\"v\":\"395px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":17},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":340,\"startRelative\":340,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"filter\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":340,\"startRelative\":340,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"start\":5000,\"startRelative\":3660,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":340},{\"id\":\"frame_999\",\"start\":5000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":true},\"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],\"e\":false}},\"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\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper tp-slicey\"},\"type\":\"shape\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(41, 15, 2, '{\"addOns\":{\"revslider-slicey-addon\":{\"shadow\":{\"blur\":\"0\",\"color\":\"transparent\",\"strength\":\"0\"}}},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/deskbg.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/deskbg.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/websiteintro\\/slide2.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[900]},\"panzoom\":{\"set\":true,\"blurStart\":\"20\",\"duration\":\"5000\",\"ease\":\"power2.inOut\",\"fitEnd\":\"150\"},\"version\":\"6.2.0\"}', '{\"9\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big1\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-112px\",\"e\":true},\"n\":{\"v\":\"-43px\",\"e\":true},\"t\":{\"v\":\"-81px\",\"e\":true},\"m\":{\"v\":\"44px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-219px\",\"e\":true},\"n\":{\"v\":\"-184px\",\"e\":true},\"t\":{\"v\":\"-185px\",\"e\":true},\"m\":{\"v\":\"182px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3700},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"10\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big2\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"151px\",\"e\":true},\"n\":{\"v\":\"228px\",\"e\":true},\"t\":{\"v\":\"224px\",\"e\":true},\"m\":{\"v\":\"117px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-212px\",\"e\":true},\"n\":{\"v\":\"-159px\",\"e\":true},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"-222px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":350},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":350,\"startRelative\":350},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":350,\"startRelative\":350},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3650},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"29\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big3\",\"uid\":29,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-442px\",\"e\":true},\"t\":{\"v\":\"104px\",\"e\":true},\"m\":{\"v\":\"-159px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"165px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"219px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":400,\"startRelative\":400},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"12\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big4\",\"uid\":12,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"162px\",\"e\":true},\"n\":{\"v\":\"216px\",\"e\":true},\"t\":{\"v\":\"-239px\",\"e\":true},\"m\":{\"v\":\"193px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"195px\",\"e\":true},\"n\":{\"v\":\"245px\",\"e\":true},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"146px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":450,\"startRelative\":450},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3550},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"34\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big5\",\"uid\":34,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-186px\",\"e\":true},\"n\":{\"v\":\"-119px\",\"e\":true},\"t\":{\"v\":\"273px\",\"e\":true},\"m\":{\"v\":\"-223px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"269px\",\"e\":true},\"n\":{\"v\":\"217px\",\"e\":true},\"t\":{\"v\":\"-121px\",\"e\":true},\"m\":{\"v\":\"69px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":500},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3500},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"11\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big6\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-325px\",\"e\":true},\"n\":{\"v\":\"292px\",\"e\":true},\"t\":{\"v\":\"162px\",\"e\":true},\"m\":{\"v\":\"-34px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"55px\",\"e\":true},\"t\":{\"v\":\"-275px\",\"e\":true},\"m\":{\"v\":\"-174px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":550},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":550,\"startRelative\":550},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3450},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"27\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig1\",\"uid\":27,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"300px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-429px\",\"e\":true},\"n\":{\"v\":\"523px\",\"e\":true},\"t\":{\"v\":\"-190px\",\"e\":true},\"m\":{\"v\":\"-306px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-327px\",\"e\":true},\"n\":{\"v\":\"173px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"480px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":320},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":320,\"startRelative\":320},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":320,\"startRelative\":320},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3680},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"28\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig2\",\"uid\":28,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"422px\",\"e\":true},\"n\":{\"v\":\"-409px\",\"e\":true},\"t\":{\"v\":\"208px\",\"e\":true},\"m\":{\"v\":\"225px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-245px\",\"e\":true},\"n\":{\"v\":\"-72px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"-14px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":360},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":360,\"startRelative\":360},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":360,\"startRelative\":360},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3640},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"30\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig3\",\"uid\":30,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"549px\",\"e\":true},\"n\":{\"v\":\"-445px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"58px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"236px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"316px\",\"e\":true},\"m\":{\"v\":\"287px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":13,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":400,\"startRelative\":400},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600},\"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\":\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"31\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig4\",\"uid\":31,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-522px\",\"e\":true},\"n\":{\"v\":\"492px\",\"e\":true},\"t\":{\"v\":\"-151px\",\"e\":true},\"m\":{\"v\":\"262px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-180px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"-141px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":14,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":440},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":440,\"startRelative\":440},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":440,\"startRelative\":440},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3560},\"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\":\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"32\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig5\",\"uid\":32,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-588px\",\"e\":true},\"n\":{\"v\":\"-375px\",\"e\":true},\"t\":{\"v\":\"-253px\",\"e\":true},\"m\":{\"v\":\"-207px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"-328px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"-111px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":15,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":480,\"startRelative\":480},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3520},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"33\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Long1\",\"uid\":33,\"size\":{\"width\":{\"d\":{\"v\":\"450px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"450px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-37px\",\"e\":true},\"n\":{\"v\":\"73px\",\"e\":true},\"t\":{\"v\":\"-76px\",\"e\":true},\"m\":{\"v\":\"-100px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-401px\",\"e\":true},\"n\":{\"v\":\"-340px\",\"e\":true},\"t\":{\"v\":\"-293px\",\"e\":true},\"m\":{\"v\":\"-246px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":16,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":310},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":310,\"startRelative\":310},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":310,\"startRelative\":310},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3690},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"35\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Long3\",\"uid\":35,\"size\":{\"width\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"350px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"v\":\"186px\",\"e\":true},\"n\":{\"v\":\"38px\",\"e\":true},\"t\":{\"v\":\"116px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"363px\",\"e\":true},\"n\":{\"v\":\"402px\",\"e\":true},\"t\":{\"v\":\"190px\",\"e\":true},\"m\":{\"v\":\"395px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":17,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":340},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":340,\"startRelative\":340},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":340,\"startRelative\":340},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3660},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\" \",\"alias\":\"BGOVERLAY\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"cover\",\"originalWidth\":\"100%\",\"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\":18,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":18,\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"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\":\"power4.out\",\"speed\":500,\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"start\":9000,\"startRelative\":8490,\"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(0, 0, 0, 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\"},\"visibility\":{\"visible\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Exploring<br\\/>New Paths\",\"alias\":\"TITLE\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"481px\",\"e\":true},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\"},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":19,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"-5px\",\"e\":true},\"n\":{\"v\":\"-5px\"},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"v\":\"-5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"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\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"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\"},\"3\":{\"text\":\"Discover our 90+ Template Library and range of free Add-Ons.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"480px\"},\"t\":{\"v\":\"480px\"},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"480px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":20,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":20,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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}},\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"35px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"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\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"DIVE RIGHT IN\",\"alias\":\"BUTTON\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"e\":true}},\"originalWidth\":\"250px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"160px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":21,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":21,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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\":[\"0px\",\"50px\",\"0px\",\"50px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]},\"t\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]},\"m\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"18px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"#57ca85\",\"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,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"#57ca85\",\"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(255,255,255,1)\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":40,\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\",\"twitter_text\":\"\",\"twitter_link\":\"\",\"facebook_link\":\"\",\"googleplus_link\":\"\",\"linkedin_link\":\"\",\"linkedin_link_title\":\"\",\"linkedin_link_summary\":\"\",\"pinterest_link\":\"\",\"pinterest_image\":\"\",\"pinterest_link_description\":\"\",\"email_link\":\"\",\"email_link_url\":\"\",\"email_link_subject\":\"\",\"email_link_body\":\"\"}],\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(42, 15, 3, '{\"addOns\":{\"revslider-slicey-addon\":{\"shadow\":{\"blur\":\"0\",\"color\":\"transparent\",\"strength\":\"0\"}}},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/reachout_bg.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/reachout_bg.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/websiteintro\\/slide3.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[900]},\"panzoom\":{\"set\":true,\"blurStart\":\"20\",\"duration\":\"5000\",\"ease\":\"power2.inOut\",\"fitEnd\":\"150\"},\"version\":\"6.2.0\"}', '{\"9\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big1\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-112px\",\"e\":true},\"n\":{\"v\":\"-43px\",\"e\":true},\"t\":{\"v\":\"-81px\",\"e\":true},\"m\":{\"v\":\"44px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-219px\",\"e\":true},\"n\":{\"v\":\"-184px\",\"e\":true},\"t\":{\"v\":\"-185px\",\"e\":true},\"m\":{\"v\":\"182px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"0deg\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3700},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"10\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big2\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"151px\",\"e\":true},\"n\":{\"v\":\"228px\",\"e\":true},\"t\":{\"v\":\"224px\",\"e\":true},\"m\":{\"v\":\"117px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-212px\",\"e\":true},\"n\":{\"v\":\"-159px\",\"e\":true},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"-222px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":350},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":350,\"startRelative\":350},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":350,\"startRelative\":350},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3650},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"29\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big3\",\"uid\":29,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-442px\",\"e\":true},\"t\":{\"v\":\"104px\",\"e\":true},\"m\":{\"v\":\"-159px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"165px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"219px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":400,\"startRelative\":400},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"12\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big4\",\"uid\":12,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"150px\"},\"position\":{\"x\":{\"d\":{\"v\":\"162px\",\"e\":true},\"n\":{\"v\":\"216px\",\"e\":true},\"t\":{\"v\":\"-239px\",\"e\":true},\"m\":{\"v\":\"193px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"195px\",\"e\":true},\"n\":{\"v\":\"245px\",\"e\":true},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"146px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":450,\"startRelative\":450},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3550},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"34\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big5\",\"uid\":34,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-186px\",\"e\":true},\"n\":{\"v\":\"-119px\",\"e\":true},\"t\":{\"v\":\"273px\",\"e\":true},\"m\":{\"v\":\"-223px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"269px\",\"e\":true},\"n\":{\"v\":\"217px\",\"e\":true},\"t\":{\"v\":\"-121px\",\"e\":true},\"m\":{\"v\":\"69px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"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\":500},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":500,\"startRelative\":500},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3500},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"11\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Big6\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"150px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"150px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-325px\",\"e\":true},\"n\":{\"v\":\"292px\",\"e\":true},\"t\":{\"v\":\"162px\",\"e\":true},\"m\":{\"v\":\"-34px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"55px\",\"e\":true},\"t\":{\"v\":\"-275px\",\"e\":true},\"m\":{\"v\":\"-174px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":550},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":550,\"startRelative\":550},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3450},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"27\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig1\",\"uid\":27,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"250px\",\"originalHeight\":\"300px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-429px\",\"e\":true},\"n\":{\"v\":\"523px\",\"e\":true},\"t\":{\"v\":\"-190px\",\"e\":true},\"m\":{\"v\":\"-306px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-327px\",\"e\":true},\"n\":{\"v\":\"173px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"480px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":320},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":320,\"startRelative\":320},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":320,\"startRelative\":320},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3680},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"28\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig2\",\"uid\":28,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"422px\",\"e\":true},\"n\":{\"v\":\"-409px\",\"e\":true},\"t\":{\"v\":\"208px\",\"e\":true},\"m\":{\"v\":\"225px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-245px\",\"e\":true},\"n\":{\"v\":\"-72px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"-14px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":360},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":360,\"startRelative\":360},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":360,\"startRelative\":360},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3640},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"30\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig3\",\"uid\":30,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"549px\",\"e\":true},\"n\":{\"v\":\"-445px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"58px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"236px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"316px\",\"e\":true},\"m\":{\"v\":\"287px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":13,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":400,\"startRelative\":400},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3600},\"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\":\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"31\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig4\",\"uid\":31,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"250px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-522px\",\"e\":true},\"n\":{\"v\":\"492px\",\"e\":true},\"t\":{\"v\":\"-151px\",\"e\":true},\"m\":{\"v\":\"262px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"339px\",\"e\":true},\"n\":{\"v\":\"-180px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"-141px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":14,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":440},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":440,\"startRelative\":440},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":440,\"startRelative\":440},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3560},\"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\":\"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\":{\"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\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"32\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"300\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"VeryBig5\",\"uid\":32,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"150px\",\"e\":true},\"m\":{\"v\":\"150px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-588px\",\"e\":true},\"n\":{\"v\":\"-375px\",\"e\":true},\"t\":{\"v\":\"-253px\",\"e\":true},\"m\":{\"v\":\"-207px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"-328px\",\"e\":true},\"t\":{\"v\":\"-172px\",\"e\":true},\"m\":{\"v\":\"-111px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":15,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":480},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":480,\"startRelative\":480},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3520},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"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\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"33\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Long1\",\"uid\":33,\"size\":{\"width\":{\"d\":{\"v\":\"450px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"450px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-37px\",\"e\":true},\"n\":{\"v\":\"73px\",\"e\":true},\"t\":{\"v\":\"-76px\",\"e\":true},\"m\":{\"v\":\"-100px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-401px\",\"e\":true},\"n\":{\"v\":\"-340px\",\"e\":true},\"t\":{\"v\":\"-293px\",\"e\":true},\"m\":{\"v\":\"-246px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":16,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":310},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":310,\"startRelative\":310},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":310,\"startRelative\":310},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3690},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"35\":{\"subtype\":\"slicey\",\"addOns\":{\"revslider-slicey-addon\":{\"scaleOffset\":\"250\",\"blurStart\":\"0\",\"blurEnd\":\"20\"}},\"text\":\" \",\"alias\":\"Long3\",\"uid\":35,\"size\":{\"width\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"400px\",\"e\":true},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"originalWidth\":\"350px\",\"originalHeight\":\"100px\"},\"position\":{\"x\":{\"d\":{\"v\":\"186px\",\"e\":true},\"n\":{\"v\":\"38px\",\"e\":true},\"t\":{\"v\":\"116px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"363px\",\"e\":true},\"n\":{\"v\":\"402px\",\"e\":true},\"t\":{\"v\":\"190px\",\"e\":true},\"m\":{\"v\":\"395px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":17,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":340},{\"id\":\"frame_999\",\"start\":5000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":340,\"startRelative\":340},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":1000,\"start\":340,\"startRelative\":340},\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":5000,\"startRelative\":3660},\"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\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.5)\",\"borderColor\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"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 tp-slicey\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\" \",\"alias\":\"BGOVERLAY\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"cover\",\"originalWidth\":\"100%\",\"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\":18,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":18,\"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\":\"#ffffff\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"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\":\"power4.out\",\"speed\":500,\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"start\":9000,\"startRelative\":8490,\"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(0, 0, 0, 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\"},\"visibility\":{\"visible\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"Experience the<br\\/>\\nRevolution\",\"alias\":\"TITLE\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"481px\",\"e\":true},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-70px\",\"e\":true},\"n\":{\"v\":\"-70px\"},\"t\":{\"v\":\"-70px\",\"e\":true},\"m\":{\"v\":\"-70px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":19,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"-5px\",\"e\":true},\"n\":{\"v\":\"-5px\"},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"v\":\"-5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"50px\",\"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\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"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\"},\"3\":{\"text\":\"Cutting edge features, tons of examples, regular security checks.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"480px\"},\"t\":{\"v\":\"480px\"},\"m\":{\"v\":\"360px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"480px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":20,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":20,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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}},\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"35px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"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\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"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\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"BUY RVSLDR NOW\",\"alias\":\"BUTTON\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"250px\",\"e\":true},\"n\":{\"v\":\"250px\"},\"t\":{\"v\":\"250px\"},\"m\":{\"v\":\"250px\"}},\"height\":{\"d\":{\"e\":true}},\"originalWidth\":\"250px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"160px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":21,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":21,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\"},\"color\":{\"color\":\"#ffffff\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}},\"frame_1\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true},\"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\":2000,\"start\":1000,\"startRelative\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"filter\":{\"use\":true,\"blur\":\"20px\"},\"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\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":500,\"start\":9000,\"startRelative\":6000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"words\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"},\"lines\":{\"delay\":\"10\",\"fuse\":true,\"blur\":\"20px\"}}},\"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\":[\"0px\",\"50px\",\"0px\",\"50px\"],\"e\":true},\"n\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]},\"t\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]},\"m\":{\"v\":[\"0px\",\"50px\",\"0px\",\"50px\"]}},\"autolinebreak\":false,\"fontFamily\":\"Rubik\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"18px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"#57ca85\",\"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,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"#57ca85\",\"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(255,255,255,1)\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"http:\\/\\/codecanyon.net\\/item\\/slider-revolution-responsive-wordpress-plugin\\/2751380?ref=themepunch&license=regular&open_purchase_for_item_id=2751380&purchasable=source\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"jump_to_slide\":40,\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\",\"twitter_text\":\"\",\"twitter_link\":\"\",\"facebook_link\":\"\",\"googleplus_link\":\"\",\"linkedin_link\":\"\",\"linkedin_link_title\":\"\",\"linkedin_link_summary\":\"\",\"pinterest_link\":\"\",\"pinterest_image\":\"\",\"pinterest_link_description\":\"\",\"email_link\":\"\",\"email_link_url\":\"\",\"email_link_subject\":\"\",\"email_link_body\":\"\"}],\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(43, 16, 1, '{\"title\":\"DISCOVERY OF NATURAL WONDERS\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"position\":\"center bottom\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/news1-1.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/news1-1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/explorationheader\\/slide1.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"What our team has found in the wild\",\"l\":\"40\"}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoververtical\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"duration\":\"40000\",\"ease\":\"none\",\"fitEnd\":\"110\"},\"version\":\"6.2.0\"}', '{\"1\":{\"text\":\"DISCOVERY OF NATURAL WONDERS\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"94px\",\"e\":true},\"n\":{\"v\":\"114px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"213px\",\"e\":true},\"n\":{\"v\":\"193px\",\"e\":true},\"t\":{\"v\":\"95px\",\"e\":true},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"30px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"2\":{\"text\":\" \",\"alias\":\"BAR\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"8px\",\"e\":true},\"n\":{\"v\":\"8px\",\"e\":true},\"t\":{\"v\":\"8px\",\"e\":true},\"m\":{\"v\":\"8px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"104px\",\"e\":true},\"n\":{\"v\":\"77px\",\"e\":true},\"t\":{\"v\":\"59px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"originalWidth\":\"8px\",\"originalHeight\":\"104px\"},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"220px\",\"e\":true},\"n\":{\"v\":\"200px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\":\"0\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"rgba(255,204,0,1)\",\"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\":{\"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\":\"rgba(255,255,255,1)\",\"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\"},\"3\":{\"text\":\"GETTING BACK INTO THE GREAT OUTDOORS FOR ADVENTURE AND MYSTERY.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"98px\",\"e\":true},\"n\":{\"v\":\"118px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"358px\",\"e\":true},\"n\":{\"v\":\"302px\",\"e\":true},\"t\":{\"v\":\"184px\",\"e\":true},\"m\":{\"v\":\"163px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"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\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"customCSS\":\"letter-spacing:2px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"READ ARTICLE <i style=\\\"font-size:13px;margin-left:10px;\\\" class=\\\"fa-chevron-right\\\"><\\/i>\",\"alias\":\"CALL TO ACTION\",\"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\":\"50px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"465px\",\"e\":true},\"n\":{\"v\":\"401px\",\"e\":true},\"t\":{\"v\":\"285px\",\"e\":true},\"m\":{\"v\":\"276px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"n\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"t\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"m\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(255,204,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(0,0,0,1)\",\"backgroundColor\":\"rgba(255,204,0,1)\",\"borderColor\":\"rgba(255,204,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"0\",\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#000000\"}},\"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;\\nletter-spacing:3px;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(44, 16, 2, '{\"title\":\"TRADITIONAL PEOPLE OF INDIA\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"position\":\"center bottom\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/news2-1.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/news2-1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/explorationheader\\/slide2.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"We spend a year in India for you\",\"l\":\"40\"}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoververtical\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"duration\":\"40000\",\"ease\":\"none\",\"fitEnd\":\"110\"},\"version\":\"6.2.0\"}', '{\"1\":{\"text\":\"TRADITIONAL PEOPLE OF INDIA\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"94px\",\"e\":true},\"n\":{\"v\":\"84px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"213px\",\"e\":true},\"n\":{\"v\":\"193px\",\"e\":true},\"t\":{\"v\":\"95px\",\"e\":true},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"30px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"2\":{\"text\":\" \",\"alias\":\"BAR\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"8px\",\"e\":true},\"n\":{\"v\":\"8px\",\"e\":true},\"t\":{\"v\":\"8px\",\"e\":true},\"m\":{\"v\":\"8px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"104px\",\"e\":true},\"n\":{\"v\":\"77px\",\"e\":true},\"t\":{\"v\":\"59px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"originalWidth\":\"8px\",\"originalHeight\":\"104px\"},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"220px\",\"e\":true},\"n\":{\"v\":\"200px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\":\"0\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"rgba(255,204,0,1)\",\"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\":{\"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\":\"rgba(255,255,255,1)\",\"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\"},\"3\":{\"text\":\"WHO WE MET AND WHAT WE HAVE SEEN DURING OUR YEAR INDIA.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"98px\",\"e\":true},\"n\":{\"v\":\"88px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"358px\",\"e\":true},\"n\":{\"v\":\"302px\",\"e\":true},\"t\":{\"v\":\"184px\",\"e\":true},\"m\":{\"v\":\"163px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"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\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"customCSS\":\"letter-spacing:2px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"READ ARTICLE <i style=\\\"font-size:13px;margin-left:10px;\\\" class=\\\"fa-chevron-right\\\"><\\/i>\",\"alias\":\"CALL TO ACTION\",\"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\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"465px\",\"e\":true},\"n\":{\"v\":\"411px\",\"e\":true},\"t\":{\"v\":\"285px\",\"e\":true},\"m\":{\"v\":\"254px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"n\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"t\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"m\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(255,204,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(0,0,0,1)\",\"backgroundColor\":\"rgba(255,204,0,1)\",\"borderColor\":\"rgba(255,204,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"0\",\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#000000\"}},\"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;\\nletter-spacing:3px;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(45, 16, 3, '{\"title\":\"OUR ARCTIC CIRCLE EXPEDITION\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"position\":\"center bottom\",\"positionX\":\"-50\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/news3-2.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/news3-2.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/explorationheader\\/slide3.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Read all the details about it here\",\"l\":\"40\"}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoververtical\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"duration\":\"40000\",\"ease\":\"none\",\"fitEnd\":\"110\"},\"version\":\"6.2.0\"}', '{\"5\":{\"text\":\" \",\"alias\":\"BOX BG\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"750px\",\"e\":true},\"n\":{\"v\":\"680px\",\"e\":true},\"t\":{\"v\":\"440px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"covermode\":\"fullheight\",\"originalWidth\":\"750px\",\"originalHeight\":\"100%\"},\"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\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"0\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9500}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"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\":\"power4.out\",\"speed\":500,\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"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\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"inherit\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"rgba(33,42,64,1)\",\"borderColor\":\"rgba(0,0,0,0.50)\",\"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\":{\"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\":\"rgba(255,255,255,1)\",\"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},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"1\":{\"text\":\"OUR ARCTIC CIRCLE EXPEDITION\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"94px\",\"e\":true},\"n\":{\"v\":\"84px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"213px\",\"e\":true},\"n\":{\"v\":\"193px\",\"e\":true},\"t\":{\"v\":\"95px\",\"e\":true},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"1\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"30px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"2\":{\"text\":\" \",\"alias\":\"BAR\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"8px\",\"e\":true},\"n\":{\"v\":\"8px\",\"e\":true},\"t\":{\"v\":\"8px\",\"e\":true},\"m\":{\"v\":\"8px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"104px\",\"e\":true},\"n\":{\"v\":\"77px\",\"e\":true},\"t\":{\"v\":\"59px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"originalWidth\":\"8px\",\"originalHeight\":\"104px\"},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"220px\",\"e\":true},\"n\":{\"v\":\"200px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"2\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\":\"0\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"rgba(255,204,0,1)\",\"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\":{\"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\":\"rgba(255,255,255,1)\",\"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\"},\"3\":{\"text\":\"WHAT WE EXPERIENCED IN THE SNOW AND 50\\u00b0 BELOW ZERO.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"98px\",\"e\":true},\"n\":{\"v\":\"88px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"358px\",\"e\":true},\"n\":{\"v\":\"302px\",\"e\":true},\"t\":{\"v\":\"184px\",\"e\":true},\"m\":{\"v\":\"163px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"3\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"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\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"customCSS\":\"letter-spacing:2px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"READ ARTICLE <i style=\\\"font-size:13px;margin-left:10px;\\\" class=\\\"fa-chevron-right\\\"><\\/i>\",\"alias\":\"CALL TO ACTION\",\"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\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"465px\",\"e\":true},\"n\":{\"v\":\"411px\",\"e\":true},\"t\":{\"v\":\"285px\",\"e\":true},\"m\":{\"v\":\"254px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"4\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"n\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"t\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"m\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(255,204,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(0,0,0,1)\",\"backgroundColor\":\"rgba(255,204,0,1)\",\"borderColor\":\"rgba(255,204,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"0\",\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#000000\"}},\"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;\\nletter-spacing:3px;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"},\"7\":{\"text\":\"POPULAR\",\"alias\":\"POPULAR\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"290px\",\"e\":true},\"m\":{\"v\":\"215px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"95px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"123px\",\"e\":true},\"m\":{\"v\":\"69px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"163px\",\"e\":true},\"n\":{\"v\":\"143px\",\"e\":true},\"t\":{\"v\":\"52px\",\"e\":true},\"m\":{\"v\":\"53px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"5\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(60,214,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(60,214,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(60,214,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(60,214,255,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"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\":\"rgba(60,214,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(60,214,255,1)\",\"e\":true},\"t\":{\"v\":\"rgba(60,214,255,1)\",\"e\":true},\"m\":{\"v\":\"rgba(60,214,255,1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"customCSS\":\"letter-spacing:2px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"6\":{\"text\":\" \",\"alias\":\"CIRCLE\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"originalWidth\":\"30px\",\"originalHeight\":\"30px\"},\"position\":{\"x\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"39px\",\"e\":true},\"t\":{\"v\":\"79px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"159px\",\"e\":true},\"n\":{\"v\":\"139px\",\"e\":true},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"49px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"6\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.1\",\"scaleY\":\"1.1\"},\"speed\":2000,\"ease\":\"power1.inOut\"}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"100\",\"e\":true},\"n\":{\"v\":\"100\",\"e\":true},\"t\":{\"v\":\"100\",\"e\":true},\"m\":{\"v\":\"100\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"rgba(60,214,255,1)\",\"borderRadius\":{\"v\":[\"50%\",\"50%\",\"50%\",\"50%\"]},\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"9\":{\"text\":\" \",\"alias\":\"ICON\",\"uid\":9,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/action\\/ic_trending_up_24px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgb(33, 42, 64);\\\"><path d=\\\"M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"size\":{\"width\":{\"d\":{\"v\":\"23px\",\"e\":true},\"n\":{\"v\":\"23px\",\"e\":true},\"t\":{\"v\":\"23px\",\"e\":true},\"m\":{\"v\":\"23px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"23px\",\"e\":true},\"n\":{\"v\":\"23px\",\"e\":true},\"t\":{\"v\":\"23px\",\"e\":true},\"m\":{\"v\":\"23px\",\"e\":true}},\"originalWidth\":\"23px\",\"originalHeight\":\"23px\"},\"position\":{\"x\":{\"d\":{\"v\":\"52px\",\"e\":true},\"n\":{\"v\":\"42px\",\"e\":true},\"t\":{\"v\":\"82px\",\"e\":true},\"m\":{\"v\":\"31px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"163px\",\"e\":true},\"n\":{\"v\":\"143px\",\"e\":true},\"t\":{\"v\":\"53px\",\"e\":true},\"m\":{\"v\":\"53px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"7\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"scaleX\":\"1\",\"scaleY\":\"1\"},\"frame_999\":{\"scaleX\":\"1.1\",\"scaleY\":\"1.1\"},\"speed\":2000,\"ease\":\"power1.inOut\"}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(33,42,64,1)\",\"e\":true},\"n\":{\"v\":\"rgba(33,42,64,1)\",\"e\":true},\"t\":{\"v\":\"rgba(33,42,64,1)\",\"e\":true},\"m\":{\"v\":\"rgba(33,42,64,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"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\":\"rgba(33,42,64,1)\",\"e\":true},\"n\":{\"v\":\"rgba(33,42,64,1)\",\"e\":true},\"t\":{\"v\":\"rgba(33,42,64,1)\",\"e\":true},\"m\":{\"v\":\"rgba(33,42,64,1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"svg\",\"version\":\"6.2.0\"}}', '{\"hor_lines\":[\"50px\"],\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(46, 16, 4, '{\"title\":\"WILDLIFE IN 4K YOUTUBE VIDEO\",\"bg\":{\"type\":\"youtube\",\"color\":\"#E7E7E7\",\"position\":\"center bottom\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/youtubecover-1.jpg\",\"youtube\":\"xDMP3i36naA\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loop\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/youtubecover-1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/explorationheader\\/slide4.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Created by Jacob + Katie Schwarz\",\"l\":\"40\"}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoververtical\"],\"slots\":[\"default\"],\"duration\":[\"default\"]},\"panzoom\":{\"duration\":\"40000\",\"ease\":\"none\",\"fitEnd\":\"110\"},\"version\":\"6.2.0\"}', '{\"1\":{\"text\":\"WILDLIFE IN 4K YOUTUBE VIDEO\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"94px\",\"e\":true},\"n\":{\"v\":\"84px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"213px\",\"e\":true},\"n\":{\"v\":\"193px\",\"e\":true},\"t\":{\"v\":\"95px\",\"e\":true},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"30px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"2\":{\"text\":\" \",\"alias\":\"BAR\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"8px\",\"e\":true},\"n\":{\"v\":\"8px\",\"e\":true},\"t\":{\"v\":\"8px\",\"e\":true},\"m\":{\"v\":\"8px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"104px\",\"e\":true},\"n\":{\"v\":\"77px\",\"e\":true},\"t\":{\"v\":\"59px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"originalWidth\":\"8px\",\"originalHeight\":\"104px\"},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"220px\",\"e\":true},\"n\":{\"v\":\"200px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\":\"0\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"rgba(255,204,0,1)\",\"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\":{\"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\":\"rgba(255,255,255,1)\",\"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\"},\"3\":{\"text\":\"CREATED BY JACOB + KATIE SCHWARZ.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\"},\"position\":{\"x\":{\"d\":{\"v\":\"98px\",\"e\":true},\"n\":{\"v\":\"88px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"358px\",\"e\":true},\"n\":{\"v\":\"302px\",\"e\":true},\"t\":{\"v\":\"184px\",\"e\":true},\"m\":{\"v\":\"163px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"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\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"customCSS\":\"letter-spacing:2px;\\n\",\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"GO TO VIDEO <i style=\\\"font-size:13px;margin-left:10px;\\\" class=\\\"fa-chevron-right\\\"><\\/i>\",\"alias\":\"CALL TO ACTION\",\"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\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"465px\",\"e\":true},\"n\":{\"v\":\"411px\",\"e\":true},\"t\":{\"v\":\"285px\",\"e\":true},\"m\":{\"v\":\"254px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"n\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"t\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]},\"m\":{\"v\":[\"0px\",\"45px\",\"0px\",\"45px\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderColor\":\"rgba(255,204,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(0,0,0,1)\",\"backgroundColor\":\"rgba(255,204,0,1)\",\"borderColor\":\"rgba(255,204,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"0\",\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/www.youtube.com\\/watch?v=xDMP3i36naA\",\"link_open_in\":\"_blank\",\"jump_to_slide\":43,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"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;\\nletter-spacing:3px;\\n\",\"type\":\"button\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(47, 17, 1, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"FUTURES THINKING HELPS YOU TRANSFORM\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"fit\":\"percentage\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/concept-4455115__480.jpg\",\"imageId\":157,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/concept-4455115__480.jpg\",\"customThumbSrcId\":157,\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/concept-4455115__480.jpg\",\"customAdminThumbSrcId\":157,\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Learn how to plan long-term\",\"l\":\"40\",\"e\":true},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoververtical\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"panzoom\":{\"duration\":\"40000\",\"fitEnd\":\"110\"},\"nav\":{\"arrows\":{\"presets\":{\"left-icon\":\"\\\\e824\",\"left-icon-def\":false,\"right-icon\":\"\\\\e825\",\"right-icon-def\":false}},\"tabs\":{\"presets\":{\"borderc\":\"rgba(255,255,255,0.15)\",\"borderc-def\":false,\"size\":\"60\",\"size-def\":false,\"bg\":\"rgba(0,0,0,0)\",\"bg-def\":false,\"color\":\"rgba(51,51,51,0)\",\"color-def\":false,\"datecolor\":\"rgba(255,255,255,0.5)\",\"datecolor-def\":false,\"datesize\":\"12\",\"datesize-def\":false,\"titlecolor\":\"#ffffff\",\"titlecolor-def\":false,\"titlesize\":\"14\",\"titlesize-def\":false,\"hbg\":\"rgba(0,0,0,0.51)\",\"hbg-def\":false}}}}', '{\"1\":{\"text\":\"FUTURES THINKING AND STRATEGY TRANSFORMATION BEYOND 2030\",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"94px\",\"e\":true},\"n\":{\"v\":\"114px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"213px\",\"e\":true},\"n\":{\"v\":\"193px\",\"e\":true},\"t\":{\"v\":\"95px\",\"e\":true},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Bar\",\"uid\":2,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"8px\",\"e\":true},\"n\":{\"v\":\"8px\",\"e\":true},\"t\":{\"v\":\"8px\",\"e\":true},\"m\":{\"v\":\"8px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"104px\",\"e\":true},\"n\":{\"v\":\"77px\",\"e\":true},\"t\":{\"v\":\"59px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"originalWidth\":\"8px\",\"originalHeight\":\"104px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"220px\",\"e\":true},\"n\":{\"v\":\"200px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleY\":\"0\",\"opacity\":\"1\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"#db7546\",\"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\":{\"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\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"3\":{\"text\":\"Learn tools and methods to explore, create and manage alternative futures.\\n\",\"alias\":\"Subtitle\",\"uid\":3,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"97px\",\"e\":true},\"n\":{\"v\":\"118px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"470px\",\"e\":true},\"n\":{\"v\":\"302px\",\"e\":true},\"t\":{\"v\":\"184px\",\"e\":true},\"m\":{\"v\":\"163px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":650,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":650,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"2px\"},\"n\":{\"v\":\"2px\"},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"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\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"DOWNLOAD COURSE FLYER <i style=\\\"font-size:13px;margin-left:10px;\\\" class=\\\"fa-chevron-right\\\"><\\/i>\",\"alias\":\"Call to action\",\"uid\":4,\"version\":\"6.2.0\",\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"51px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"535px\",\"e\":true},\"n\":{\"v\":\"401px\",\"e\":true},\"t\":{\"v\":\"285px\",\"e\":true},\"m\":{\"v\":\"276px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":800,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":800,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#db7546\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,45,0,45],\"e\":false},\"n\":{\"v\":[0,45,0,45],\"e\":false},\"t\":{\"v\":[0,45,0,45],\"e\":false},\"m\":{\"v\":[0,45,0,45],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"3px\"},\"n\":{\"v\":\"3px\"},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"3px\"}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#db7546\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#db7546\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"0\",\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(48, 17, 2, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"SMART CITY FUTURES\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"fit\":\"percentage\",\"position\":\"center bottom\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/smart-4168483__480.jpg\",\"imageId\":158,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/smart-4168483__480.jpg\",\"customThumbSrcId\":158,\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/smart-4168483__480.jpg\",\"customAdminThumbSrcId\":158,\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"How smart cities manage\",\"l\":\"40\",\"e\":true},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoververtical\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"panzoom\":{\"duration\":\"40000\",\"fitEnd\":\"110\"},\"nav\":{\"arrows\":{\"presets\":{\"left-icon\":\"\\\\e824\",\"left-icon-def\":false,\"right-icon\":\"\\\\e825\",\"right-icon-def\":false}},\"tabs\":{\"presets\":{\"borderc\":\"rgba(255,255,255,0.15)\",\"borderc-def\":false,\"size\":\"60\",\"size-def\":false,\"bg\":\"rgba(0,0,0,0)\",\"bg-def\":false,\"color\":\"rgba(51,51,51,0)\",\"color-def\":false,\"datecolor\":\"rgba(255,255,255,0.5)\",\"datecolor-def\":false,\"datesize\":\"12\",\"datesize-def\":false,\"titlecolor\":\"#ffffff\",\"titlecolor-def\":false,\"titlesize\":\"14\",\"titlesize-def\":false,\"hbg\":\"rgba(0,0,0,0.51)\",\"hbg-def\":false}}}}', '{\"1\":{\"text\":\"SMART CITIES OF THE FUTURE \",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"94px\",\"e\":true},\"n\":{\"v\":\"84px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"213px\",\"e\":true},\"n\":{\"v\":\"193px\",\"e\":true},\"t\":{\"v\":\"95px\",\"e\":true},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Bar\",\"uid\":2,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"8px\",\"e\":true},\"n\":{\"v\":\"8px\",\"e\":true},\"t\":{\"v\":\"8px\",\"e\":true},\"m\":{\"v\":\"8px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"104px\",\"e\":true},\"n\":{\"v\":\"77px\",\"e\":true},\"t\":{\"v\":\"59px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"originalWidth\":\"8px\",\"originalHeight\":\"104px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"220px\",\"e\":true},\"n\":{\"v\":\"200px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleY\":\"0\",\"opacity\":\"1\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"#2468ef\",\"borderColor\":\"#2468ef\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"DOWNLOAD COURSE FLYER <i style=\\\"font-size:13px;margin-left:10px;\\\" class=\\\"fa-chevron-right\\\"><\\/i>\",\"alias\":\"Call to action\",\"uid\":4,\"version\":\"6.2.0\",\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"465px\",\"e\":true},\"n\":{\"v\":\"411px\",\"e\":true},\"t\":{\"v\":\"285px\",\"e\":true},\"m\":{\"v\":\"254px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":800,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":800,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2468ef\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,45,0,45],\"e\":false},\"n\":{\"v\":[0,45,0,45],\"e\":false},\"t\":{\"v\":[0,45,0,45],\"e\":false},\"m\":{\"v\":[0,45,0,45],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"3px\"},\"n\":{\"v\":\"3px\"},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"3px\"}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2468ef\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#2468ef\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"0\",\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"21\":{\"text\":\"HOW CAN SMART CITIES MANAGE TECHNOLOGY TO ENSURE THAT PEOPLE AND THE ENVIRONMENT BENEFITS?\",\"alias\":\"Copy subtitle\",\"uid\":21,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"98px\",\"e\":true},\"n\":{\"v\":\"88px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"358px\",\"e\":true},\"n\":{\"v\":\"302px\",\"e\":true},\"t\":{\"v\":\"184px\",\"e\":true},\"m\":{\"v\":\"163px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":650,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":650,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"2px\"},\"n\":{\"v\":\"2px\"},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"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\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}', '{\"version\":\"6.2.0\"}'),
(49, 17, 3, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"POST COVID-19 FUTURES\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"position\":\"center bottom\",\"positionX\":\"-50\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/virus-5675422__480.jpg\",\"imageId\":159,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/virus-5675422__480.jpg\",\"customThumbSrcId\":159,\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/virus-5675422__480.jpg\",\"customAdminThumbSrcId\":159,\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Crises preparedness\",\"l\":\"40\",\"e\":true},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoververtical\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"panzoom\":{\"duration\":\"40000\",\"fitEnd\":\"110\"},\"nav\":{\"arrows\":{\"presets\":{\"left-icon\":\"\\\\e824\",\"left-icon-def\":false,\"right-icon\":\"\\\\e825\",\"right-icon-def\":false}},\"tabs\":{\"presets\":{\"borderc\":\"rgba(255,255,255,0.15)\",\"borderc-def\":false,\"size\":\"60\",\"size-def\":false,\"bg\":\"rgba(0,0,0,0)\",\"bg-def\":false,\"color\":\"rgba(51,51,51,0)\",\"color-def\":false,\"datecolor\":\"rgba(255,255,255,0.5)\",\"datecolor-def\":false,\"datesize\":\"12\",\"datesize-def\":false,\"titlecolor\":\"#ffffff\",\"titlecolor-def\":false,\"titlesize\":\"14\",\"titlesize-def\":false,\"hbg\":\"rgba(0,0,0,0.51)\",\"hbg-def\":false}}}}', '{\"1\":{\"text\":\"THE POST COVID-19 WORLD\",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"94px\",\"e\":true},\"n\":{\"v\":\"84px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"213px\",\"e\":true},\"n\":{\"v\":\"193px\",\"e\":true},\"t\":{\"v\":\"95px\",\"e\":true},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"1\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Bar\",\"uid\":2,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"8px\",\"e\":true},\"n\":{\"v\":\"8px\",\"e\":true},\"t\":{\"v\":\"8px\",\"e\":true},\"m\":{\"v\":\"8px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"104px\",\"e\":true},\"n\":{\"v\":\"77px\",\"e\":true},\"t\":{\"v\":\"59px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"originalWidth\":\"8px\",\"originalHeight\":\"104px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"220px\",\"e\":true},\"n\":{\"v\":\"200px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"2\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleY\":\"0\",\"opacity\":\"1\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"#000000\",\"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\":{\"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\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"3\":{\"text\":\"What are the implications of the novel coronavirus (COVID-19) - globally and locally? Is Corona 4.0 likely?\",\"alias\":\"Subtitle\",\"uid\":3,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"98px\",\"e\":true},\"n\":{\"v\":\"88px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"358px\",\"e\":true},\"n\":{\"v\":\"302px\",\"e\":true},\"t\":{\"v\":\"184px\",\"e\":true},\"m\":{\"v\":\"163px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"3\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":650,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":650,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"2px\"},\"n\":{\"v\":\"2px\"},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"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\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"REGISTER <i style=\\\"font-size:13px;margin-left:10px;\\\" class=\\\"fa-chevron-right\\\"><\\/i>\",\"alias\":\"Call to action\",\"uid\":4,\"version\":\"6.2.0\",\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"465px\",\"e\":true},\"n\":{\"v\":\"411px\",\"e\":true},\"t\":{\"v\":\"285px\",\"e\":true},\"m\":{\"v\":\"254px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"4\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":800,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":800,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,45,0,45],\"e\":false},\"n\":{\"v\":[0,45,0,45],\"e\":false},\"t\":{\"v\":[0,45,0,45],\"e\":false},\"m\":{\"v\":[0,45,0,45],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"3px\"},\"n\":{\"v\":\"3px\"},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"3px\"}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#000000\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"0\",\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"5\":{\"text\":\"\",\"alias\":\"Box bg\",\"uid\":5,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"750px\",\"e\":true},\"n\":{\"v\":\"680px\",\"e\":true},\"t\":{\"v\":\"440px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"750px\",\"originalHeight\":\"100%\",\"covermode\":\"fullheight\",\"scaleProportional\":false},\"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\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":\"0\"},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"opacity\":\"1\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"endWithSlide\":false,\"frameLength\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"v\":\"left\"},\"n\":{\"v\":\"left\"},\"t\":{\"v\":\"left\"},\"m\":{\"v\":\"left\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":500,\"start\":9000,\"endWithSlide\":true,\"frameLength\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"rgba(33,42,64,1)\",\"borderColor\":\"rgba(0,0,0,0.50)\",\"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\":{\"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\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"m\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(50, 17, 4, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"EDUCATION FUTURES\",\"bg\":{\"type\":\"youtube\",\"color\":\"#E7E7E7\",\"position\":\"center bottom\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1.jpg\",\"imageId\":163,\"imageLib\":\"medialibrary\",\"youtube\":\"50a9irFJu_U\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loop\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1.jpg\",\"customThumbSrcId\":163,\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/20180219_AERIALS-HEALTH-AND-KNOWLEDGE-PRECINCT-07-medium-e1536626128635-1024x514-1.jpg\",\"customAdminThumbSrcId\":163,\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Transform how you learn\",\"l\":\"40\",\"e\":true},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoververtical\"],\"slots\":[\"default\"],\"duration\":[\"default\"],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"panzoom\":{\"duration\":\"40000\",\"fitEnd\":\"110\"},\"nav\":{\"arrows\":{\"presets\":{\"left-icon\":\"\\\\e824\",\"left-icon-def\":false,\"right-icon\":\"\\\\e825\",\"right-icon-def\":false}},\"tabs\":{\"presets\":{\"borderc\":\"rgba(255,255,255,0.15)\",\"borderc-def\":false,\"size\":\"60\",\"size-def\":false,\"bg\":\"rgba(0,0,0,0)\",\"bg-def\":false,\"color\":\"rgba(51,51,51,0)\",\"color-def\":false,\"datecolor\":\"rgba(255,255,255,0.5)\",\"datecolor-def\":false,\"datesize\":\"12\",\"datesize-def\":false,\"titlecolor\":\"#ffffff\",\"titlecolor-def\":false,\"titlesize\":\"14\",\"titlesize-def\":false,\"hbg\":\"rgba(0,0,0,0.51)\",\"hbg-def\":false}}}}', '{\"1\":{\"text\":\"EDUCATION FUTURES\",\"alias\":\"Title\",\"uid\":1,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"94px\",\"e\":true},\"n\":{\"v\":\"84px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"213px\",\"e\":true},\"n\":{\"v\":\"193px\",\"e\":true},\"t\":{\"v\":\"95px\",\"e\":true},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"45px\",\"e\":true},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Bar\",\"uid\":2,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"8px\",\"e\":true},\"n\":{\"v\":\"8px\",\"e\":true},\"t\":{\"v\":\"8px\",\"e\":true},\"m\":{\"v\":\"8px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"104px\",\"e\":true},\"n\":{\"v\":\"77px\",\"e\":true},\"t\":{\"v\":\"59px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"originalWidth\":\"8px\",\"originalHeight\":\"104px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"220px\",\"e\":true},\"n\":{\"v\":\"200px\",\"e\":true},\"t\":{\"v\":\"100px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleY\":\"0\",\"opacity\":\"1\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":500,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"#4a8e8e\",\"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\":{\"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\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"3\":{\"text\":\"HEALTH AND KNOWLEDGE PRECINCTS AS POSSIBLE STRATEGY\",\"alias\":\"Subtitle\",\"uid\":3,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"560px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"600px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"96px\",\"e\":true},\"n\":{\"v\":\"88px\",\"e\":true},\"t\":{\"v\":\"76px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"282px\",\"e\":true},\"n\":{\"v\":\"302px\",\"e\":true},\"t\":{\"v\":\"184px\",\"e\":true},\"m\":{\"v\":\"163px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":650,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":650,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":650},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"2px\"},\"n\":{\"v\":\"2px\"},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"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\":\"rgba(255,255,255,0.85)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.85)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"4\":{\"subtype\":\"roundbutton\",\"text\":\"REGISTER <i style=\\\"font-size:13px;margin-left:10px;\\\" class=\\\"fa-chevron-right\\\"><\\/i>\",\"alias\":\"Call to action\",\"uid\":4,\"version\":\"6.2.0\",\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"46px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"378px\",\"e\":true},\"n\":{\"v\":\"411px\",\"e\":true},\"t\":{\"v\":\"285px\",\"e\":true},\"m\":{\"v\":\"254px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":800,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1500,\"start\":800,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#4a8e8e\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,45,0,45],\"e\":false},\"n\":{\"v\":[0,45,0,45],\"e\":false},\"t\":{\"v\":[0,45,0,45],\"e\":false},\"m\":{\"v\":[0,45,0,45],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\",\"e\":true},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"3px\"},\"n\":{\"v\":\"3px\"},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"3px\"}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#4a8e8e\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"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,204,0,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"t\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true},\"m\":{\"v\":\"rgba(255,204,0,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#4a8e8e\",\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"2px\",\"2px\",\"2px\",\"2px\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"0\",\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/www.youtube.com\\/watch?v=50a9irFJu_U&feature=youtu.be\",\"link_open_in\":\"_self\",\"jump_to_slide\":47,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(54, 18, 1, '{\"title\":\"Intro\",\"bg\":{\"type\":\"solid\",\"color\":\"#f87c09\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/agencywebsiteheader\\/slide1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/agencywebsiteheader\\/slide1.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoverdown\"],\"slots\":[\"default\"],\"duration\":[\"1500\"],\"easeIn\":[\"power3.inOut\"],\"easeOut\":[\"power3.inOut\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}', '{\"1\":{\"text\":\"Image 1\",\"alias\":\"MACBOOK\",\"uid\":1,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/macbookpro.png\",\"imageId\":416},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"800px\",\"e\":true},\"t\":{\"v\":\"600px\",\"e\":true},\"m\":{\"v\":\"500px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"360px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"originalWidth\":1000,\"originalHeight\":600},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"-30px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"40px\",\"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\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":12000}],\"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\"}}},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"start\":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.out\",\"speed\":1000,\"start\":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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"5\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"2\":{\"text\":\"Image 2\",\"alias\":\"MACBOOK CONTENT\",\"uid\":2,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/screen1_content.jpg\",\"imageId\":417},\"size\":{\"width\":{\"d\":{\"v\":\"654px\",\"e\":true},\"n\":{\"v\":\"524px\",\"e\":true},\"t\":{\"v\":\"392\",\"e\":true},\"m\":{\"v\":\"326px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"409px\",\"e\":true},\"n\":{\"v\":\"328px\",\"e\":true},\"t\":{\"v\":\"245\",\"e\":true},\"m\":{\"v\":\"204px\",\"e\":true}},\"originalWidth\":654,\"originalHeight\":409,\"aspectRatio\":{\"d\":{\"v\":1.5990220048899755},\"n\":{\"v\":1.5990220048899755},\"t\":{\"v\":1.5990220048899755},\"m\":{\"v\":1.5990220048899755}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"-30px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-14px\",\"e\":true},\"n\":{\"v\":\"-10px\",\"e\":true},\"t\":{\"v\":\"105px\",\"e\":true},\"m\":{\"v\":\"55px\",\"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\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":12000}],\"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\"}}},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"start\":1500},\"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\":1000,\"start\":1500},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"5\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"TEXTBG\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"300px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"330px\",\"e\":true},\"n\":{\"v\":\"330px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"330px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"330px\"},\"position\":{\"x\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"130px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":12000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"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\"}}},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":1500},\"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.inOut\",\"speed\":1000,\"start\":1500},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"backgroundColor\":\"rgba(51,51,51,1)\",\"borderColor\":\"rgba(0,0,0,0.50)\",\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"<span style=\\\"color:#f87c09;font-weight:700 !important;\\\">OUR DESIGN<\\/span>\\nCOLORFUL LIKE NATURE\",\"alias\":\"TITLE\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\",\"e\":true},\"t\":{\"v\":\"260px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"260px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-98px\",\"e\":true},\"n\":{\"v\":\"-98px\",\"e\":true},\"t\":{\"v\":\"164px\",\"e\":true},\"m\":{\"v\":\"154px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":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\":\"power4.out\",\"speed\":1000,\"start\":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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallTitle\",\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontFamily\":\"lato\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"6px\"},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"6px\"},\"m\":{\"v\":\"6px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"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\",\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"When you come across someone colorful and vibrant maybe in the present it isn\'t so interesting, but, in the past, it sheds a wonderful light onto living life.\",\"alias\":\"CONTENT\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\",\"e\":true},\"t\":{\"v\":\"260px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"260px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"255px\",\"e\":true},\"m\":{\"v\":\"246px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":4},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2150},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2150},\"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\":1000,\"start\":2150},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallContent\",\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontFamily\":\"lato\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"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\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"text\",\"version\":\"6.2.0\"},\"6\":{\"text\":\"CONTACT US HERE\",\"alias\":\"LINK\",\"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\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"108px\",\"e\":true},\"n\":{\"v\":\"109px\",\"e\":true},\"t\":{\"v\":\"392px\",\"e\":true},\"m\":{\"v\":\"382px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2300},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2300},\"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\":1000,\"start\":2300},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallLink\",\"color\":{\"d\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"n\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"t\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"m\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"lato\",\"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\":{\"v\":\"2px\"},\"n\":{\"v\":\"2px\"},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"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\":\"rgba(248,124,9,1)\",\"e\":true},\"n\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"t\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"m\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"mailto:swag@themepunch.com\",\"link_open_in\":\"_self\",\"jump_to_slide\":55,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"8\":{\"subtype\":\"roundbutton\",\"text\":\"<i class=\\\"fa-angle-left\\\"><\\/i>\",\"alias\":\"PREVIOUS SLIDER\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"71px\",\"e\":true},\"n\":{\"v\":\"51px\",\"e\":true},\"t\":{\"v\":\"175px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"190px\",\"e\":true},\"n\":{\"v\":\"190px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"171px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2400},{\"id\":\"frame_999\",\"start\":12000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"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\"}}},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":2400},\"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.inOut\",\"speed\":1000,\"start\":2400},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-NavButton\",\"color\":{\"d\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"n\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"t\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"m\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"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\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"n\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"t\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"m\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"rgba(51,51,51,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"prev\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":55,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"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\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"<i class=\\\"fa-angle-right\\\"><\\/i>\",\"alias\":\"NEXT SLIDE\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"175px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"190px\",\"e\":true},\"n\":{\"v\":\"190px\",\"e\":true},\"t\":{\"v\":\"130px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2500},{\"id\":\"frame_999\",\"start\":12000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"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\"}}},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":2500},\"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.inOut\",\"speed\":1000,\"start\":2500},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-NavButton\",\"color\":{\"d\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"n\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"t\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"m\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"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\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"n\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"t\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"m\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"rgba(51,51,51,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"next\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":55,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(55, 18, 2, '{\"title\":\"Responsive\",\"bg\":{\"type\":\"solid\",\"color\":\"#6db19b\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/agencywebsiteheader\\/slide2.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/agencywebsiteheader\\/slide2.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoverdown\"],\"slots\":[\"default\"],\"duration\":[\"1500\"],\"easeIn\":[\"power3.inOut\"],\"easeOut\":[\"power3.inOut\"]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}', '{\"1\":{\"text\":\"Image 1\",\"alias\":\"IPAD\",\"uid\":1,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/ipad.png\",\"imageId\":418},\"size\":{\"width\":{\"d\":{\"v\":\"430px\",\"e\":true},\"n\":{\"v\":\"430px\",\"e\":true},\"t\":{\"v\":\"360px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"540px\",\"e\":true},\"n\":{\"v\":\"540px\",\"e\":true},\"t\":{\"v\":\"452px\",\"e\":true},\"m\":{\"v\":\"251px\",\"e\":true}},\"originalWidth\":430,\"originalHeight\":540,\"aspectRatio\":{\"d\":{\"v\":0.7962962962962963},\"n\":{\"v\":0.7962962962962963},\"t\":{\"v\":0.7962962962962963},\"m\":{\"v\":0.7962962962962963}}},\"position\":{\"x\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"start\":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.out\",\"speed\":1000,\"start\":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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"5\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"2\":{\"text\":\"Image 2\",\"alias\":\"IPAD CONTENT\",\"uid\":2,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/owl1.jpg\",\"imageId\":419},\"size\":{\"width\":{\"d\":{\"v\":\"290px\",\"e\":true},\"n\":{\"v\":\"290px\",\"e\":true},\"t\":{\"v\":\"242px\",\"e\":true},\"m\":{\"v\":\"134px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"372px\",\"e\":true},\"n\":{\"v\":\"372px\",\"e\":true},\"t\":{\"v\":\"310px\",\"e\":true},\"m\":{\"v\":\"172px\",\"e\":true}},\"originalWidth\":290,\"originalHeight\":372,\"aspectRatio\":{\"d\":{\"v\":0.7795698924731183},\"n\":{\"v\":0.7795698924731183},\"t\":{\"v\":0.7795698924731183},\"m\":{\"v\":0.7795698924731183}}},\"position\":{\"x\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"60px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"5px\",\"e\":true},\"n\":{\"v\":\"5px\",\"e\":true},\"t\":{\"v\":\"97px\",\"e\":true},\"m\":{\"v\":\"56px\",\"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\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":12000}],\"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\"}}},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"start\":1500},\"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\":1000,\"start\":1500},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"5\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"9\":{\"text\":\"Image 1\",\"alias\":\"IPHONE\",\"uid\":9,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/ihpone.png\",\"imageId\":420},\"size\":{\"width\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\",\"e\":true},\"t\":{\"v\":\"220px\",\"e\":true},\"m\":{\"v\":\"120px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"450px\",\"e\":true},\"n\":{\"v\":\"450px\",\"e\":true},\"t\":{\"v\":\"381px\",\"e\":true},\"m\":{\"v\":\"208px\",\"e\":true}},\"originalWidth\":260,\"originalHeight\":450,\"aspectRatio\":{\"d\":{\"v\":0.5777777777777777},\"n\":{\"v\":0.5777777777777777},\"t\":{\"v\":0.5777777777777777},\"m\":{\"v\":0.5777777777777777}}},\"position\":{\"x\":{\"d\":{\"v\":\"-112px\",\"e\":true},\"n\":{\"v\":\"-158px\",\"e\":true},\"t\":{\"v\":\"-92px\",\"e\":true},\"m\":{\"v\":\"-57px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"14px\",\"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\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1250},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"start\":1250},\"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\":1000,\"start\":1250},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"10\":{\"text\":\"Image 2\",\"alias\":\"IHPONE CONTENT\",\"uid\":10,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/owl2.jpg\",\"imageId\":421},\"size\":{\"width\":{\"d\":{\"v\":\"170px\",\"e\":true},\"n\":{\"v\":\"170px\",\"e\":true},\"t\":{\"v\":\"144px\",\"e\":true},\"m\":{\"v\":\"78px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"286px\",\"e\":true},\"n\":{\"v\":\"286px\",\"e\":true},\"t\":{\"v\":\"242px\",\"e\":true},\"m\":{\"v\":\"131px\",\"e\":true}},\"originalWidth\":170,\"originalHeight\":286,\"aspectRatio\":{\"d\":{\"v\":0.5944055944055944},\"n\":{\"v\":0.5944055944055944},\"t\":{\"v\":0.5944055944055944},\"m\":{\"v\":0.5944055944055944}}},\"position\":{\"x\":{\"d\":{\"v\":\"-111px\",\"e\":true},\"n\":{\"v\":\"-157px\",\"e\":true},\"t\":{\"v\":\"-92px\",\"e\":true},\"m\":{\"v\":\"-57px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"85px\",\"e\":true},\"m\":{\"v\":\"51px\",\"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\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1750},{\"id\":\"frame_999\",\"start\":12000}],\"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\"}}},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"start\":1750},\"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\":1000,\"start\":1750},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"TEXTBG\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"300px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"330px\",\"e\":true},\"n\":{\"v\":\"330px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"330px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"330px\"},\"position\":{\"x\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"130px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":4},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":12000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"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\"}}},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":1500},\"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.inOut\",\"speed\":1000,\"start\":1500},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"backgroundColor\":\"rgba(51,51,51,1)\",\"borderColor\":\"rgba(0,0,0,0.50)\",\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"<span style=\\\"color:#6db19b;font-weight:700 !important;\\\">RESPONSIVE<\\/span><br\\/>\\nFOR MOBILE PERFECTION\",\"alias\":\"TITLE\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\",\"e\":true},\"t\":{\"v\":\"260px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"260px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-98px\",\"e\":true},\"n\":{\"v\":\"-98px\",\"e\":true},\"t\":{\"v\":\"164px\",\"e\":true},\"m\":{\"v\":\"154px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":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\":\"power4.out\",\"speed\":1000,\"start\":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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallTitle\",\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontFamily\":\"lato\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"6px\"},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"6px\"},\"m\":{\"v\":\"6px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"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\",\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"Our Sliders don\\u2019t just look great on desktop devices, but scale down\\nbeautifully to work on mobile devices like smartphones or tablets.\",\"alias\":\"CONTENT\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\",\"e\":true},\"t\":{\"v\":\"260px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"260px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"9px\",\"e\":true},\"n\":{\"v\":\"8px\",\"e\":true},\"t\":{\"v\":\"255px\",\"e\":true},\"m\":{\"v\":\"245px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2150},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2150},\"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\":1000,\"start\":2150},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallContent\",\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontFamily\":\"lato\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"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\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"text\",\"version\":\"6.2.0\"},\"6\":{\"text\":\"CONTACT US HERE\",\"alias\":\"LINK\",\"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\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"108px\",\"e\":true},\"n\":{\"v\":\"109px\",\"e\":true},\"t\":{\"v\":\"392px\",\"e\":true},\"m\":{\"v\":\"382px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2300},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2300},\"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\":1000,\"start\":2300},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallLinkGreen\",\"color\":{\"d\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"n\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"t\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"m\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"lato\",\"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\":{\"v\":\"2px\"},\"n\":{\"v\":\"2px\"},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"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\":\"rgba(109,177,155,1)\",\"e\":true},\"n\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"t\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"m\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"mailto:swag@themepunch.com\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"8\":{\"subtype\":\"roundbutton\",\"text\":\"<i class=\\\"fa-angle-left\\\"><\\/i>\",\"alias\":\"PREVIOUS SLIDER\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"71px\",\"e\":true},\"n\":{\"v\":\"51px\",\"e\":true},\"t\":{\"v\":\"175px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"190px\",\"e\":true},\"n\":{\"v\":\"190px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"171px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2400},{\"id\":\"frame_999\",\"start\":12000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"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\"}}},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":2400},\"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.inOut\",\"speed\":1000,\"start\":2400},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-NavButton\",\"color\":{\"d\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"n\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"t\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"m\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"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\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"n\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"t\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"m\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"rgba(51,51,51,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"prev\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"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\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"<i class=\\\"fa-angle-right\\\"><\\/i>\",\"alias\":\"NEXT SLIDE\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"175px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"190px\",\"e\":true},\"n\":{\"v\":\"190px\",\"e\":true},\"t\":{\"v\":\"130px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2500},{\"id\":\"frame_999\",\"start\":12000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"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\"}}},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":2500},\"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.inOut\",\"speed\":1000,\"start\":2500},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-NavButton\",\"color\":{\"d\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"n\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"t\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"m\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"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\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"n\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"t\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true},\"m\":{\"v\":\"rgba(109,177,155,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"rgba(51,51,51,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"next\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(56, 18, 3, '{\"title\":\"Ideas\",\"bg\":{\"type\":\"solid\",\"color\":\"#000000\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/agencywebsiteheader\\/slide3.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/agencywebsiteheader\\/slide3.jpg\",\"dimension\":\"slider\"},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoverdown\"],\"slots\":[\"default\"],\"duration\":[\"1500\"],\"easeIn\":[\"power3.inOut\"],\"easeOut\":[\"power3.inOut\"]},\"effects\":{\"parallax\":\"5\"},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.2.0\"}', '{\"10\":{\"text\":\"Image 8\",\"alias\":\"LIGHT BG\",\"uid\":10,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/light1.jpg\",\"imageId\":422},\"size\":{\"width\":{\"d\":{\"v\":\"1920px\",\"e\":true},\"n\":{\"v\":\"1920px\"},\"t\":{\"v\":\"1920px\"},\"m\":{\"v\":\"1920px\"}},\"height\":{\"d\":{\"v\":\"1280px\",\"e\":true},\"n\":{\"v\":\"1280px\"},\"t\":{\"v\":\"1280px\"},\"m\":{\"v\":\"1280px\"}},\"originalWidth\":1920,\"originalHeight\":1280,\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":1.5},\"n\":{\"v\":1.5},\"t\":{\"v\":1.5},\"m\":{\"v\":1.5}}},\"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},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power3.inOut\",\"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.inOut\",\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"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)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"power1.inOut\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.2.0\"},\"11\":{\"text\":\"Image 8\",\"alias\":\"LIGHT ON\",\"uid\":11,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/lighton1.png\",\"imageId\":423},\"size\":{\"width\":{\"d\":{\"v\":\"1920px\",\"e\":true},\"n\":{\"v\":\"1920px\",\"e\":true},\"t\":{\"v\":\"1920px\"},\"m\":{\"v\":\"1920px\"}},\"height\":{\"d\":{\"v\":\"1280px\",\"e\":true},\"n\":{\"v\":\"1280px\",\"e\":true},\"t\":{\"v\":\"1280px\"},\"m\":{\"v\":\"1280px\"}},\"originalWidth\":1920,\"originalHeight\":1280,\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":1.5},\"n\":{\"v\":1.5},\"t\":{\"v\":1.5},\"m\":{\"v\":1.5}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":6},\"attributes\":{\"classes\":\"lighton\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":100,\"start\":1500},\"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.inOut\",\"speed\":100,\"start\":1500,\"actionTriggered\":true},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"speed\":100,\"start\":9200,\"endWithSlide\":true,\"actionTriggered\":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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"power1.inOut\"},\"actions\":{\"animationoverwrite\":\"wait\"},\"type\":\"image\",\"version\":\"6.2.0\"},\"14\":{\"text\":\" \",\"alias\":\"HOVER DETECT\",\"uid\":14,\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\",\"e\":true},\"t\":{\"v\":\"500px\",\"e\":true},\"m\":{\"v\":\"500px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\",\"e\":true},\"t\":{\"v\":\"500px\",\"e\":true},\"m\":{\"v\":\"500px\",\"e\":true}},\"originalWidth\":\"500px\",\"originalHeight\":\"500px\"},\"position\":{\"x\":{\"d\":{\"v\":\"220px\",\"e\":true},\"n\":{\"v\":\"104px\",\"e\":true},\"t\":{\"v\":\"-26px\",\"e\":true},\"m\":{\"v\":\"-168px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"129px\",\"e\":true},\"n\":{\"v\":\"77px\",\"e\":true},\"t\":{\"v\":\"178px\",\"e\":true},\"m\":{\"v\":\"51px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7},\"attributes\":{\"classes\":\"lightsensor\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":10000}],\"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\"},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"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\":1000,\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":1000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"x\":0,\"y\":0},\"frame_999\":{\"x\":0,\"y\":0},\"speed\":4000,\"ease\":\"linearEaseNone\"}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"500px\",\"500px\",\"500px\",\"500px\"],\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"mouseenter\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"11\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseleave\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"11\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseenter\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"12\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseleave\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"12\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseenter\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"13\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseleave\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"13\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"12\":{\"text\":\"Image 9\",\"alias\":\"ARROW\",\"uid\":12,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/arrow4.png\",\"imageId\":424},\"size\":{\"width\":{\"d\":{\"v\":\"121px\",\"e\":true},\"n\":{\"v\":\"121px\",\"e\":true},\"t\":{\"v\":\"121px\",\"e\":true},\"m\":{\"v\":\"121px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"53px\",\"e\":true},\"t\":{\"v\":\"53px\",\"e\":true},\"m\":{\"v\":\"53px\",\"e\":true}},\"originalWidth\":121,\"originalHeight\":53,\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":2.2830188679245285},\"n\":{\"v\":2.2830188679245285},\"t\":{\"v\":2.2830188679245285},\"m\":{\"v\":2.2830188679245285}}},\"position\":{\"x\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"-43px\",\"e\":true},\"t\":{\"v\":\"-169px\",\"e\":true},\"m\":{\"v\":\"-313px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"335px\",\"e\":true},\"n\":{\"v\":\"280px\",\"e\":true},\"t\":{\"v\":\"370px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":12000}],\"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\":\"0.2\",\"scaleY\":\"0.2\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":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\":\"back.out\",\"speed\":500,\"start\":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\"},\"timeline\":{\"ease\":\"back.in\",\"speed\":500,\"start\":11500,\"endWithSlide\":true,\"auto\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"x\":-20,\"y\":0},\"frame_999\":{\"x\":0,\"y\":0},\"speed\":2000,\"ease\":\"power2.inOut\"}},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"13\":{\"text\":\"Image 9\",\"alias\":\"ARROW 2\",\"uid\":13,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/arrow4.png\",\"imageId\":424},\"size\":{\"width\":{\"d\":{\"v\":\"121px\",\"e\":true},\"n\":{\"v\":\"121px\",\"e\":true},\"t\":{\"v\":\"121px\",\"e\":true},\"m\":{\"v\":\"121px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"53px\",\"e\":true},\"t\":{\"v\":\"53px\",\"e\":true},\"m\":{\"v\":\"53px\",\"e\":true}},\"originalWidth\":121,\"originalHeight\":53,\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":2.2830188679245285},\"n\":{\"v\":2.2830188679245285},\"t\":{\"v\":2.2830188679245285},\"m\":{\"v\":2.2830188679245285}}},\"position\":{\"x\":{\"d\":{\"v\":\"732px\",\"e\":true},\"n\":{\"v\":\"618px\",\"e\":true},\"t\":{\"v\":\"518px\",\"e\":true},\"m\":{\"v\":\"380px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"335px\",\"e\":true},\"n\":{\"v\":\"280px\",\"e\":true},\"t\":{\"v\":\"370px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":4},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":12000}],\"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\":\"0.2\",\"scaleY\":\"0.2\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":180,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":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\":180,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"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\":\"inherit\",\"scaleX\":\"0.2\",\"scaleY\":\"0.2\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.in\",\"speed\":500,\"start\":11500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"x\":20,\"y\":0},\"frame_999\":{\"x\":0,\"y\":0},\"speed\":2000,\"ease\":\"power2.inOut\"}},\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"3\":{\"text\":\" \",\"alias\":\"TEXTBG\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"300px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"330px\",\"e\":true},\"n\":{\"v\":\"330px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"330px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"330px\"},\"position\":{\"x\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"130px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":12000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"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\"}}},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":1500},\"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.inOut\",\"speed\":1000,\"start\":1500},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"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}},\"backgroundColor\":\"rgba(51,51,51,1)\",\"borderColor\":\"rgba(0,0,0,0.50)\",\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"<span style=\\\"color:#999;font-weight:700 !important;\\\">SPARKING<\\/span><br\\/>\\nBRILLANT<br\\/>IDEAS\",\"alias\":\"TITLE\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\",\"e\":true},\"t\":{\"v\":\"260px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"260px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-98px\",\"e\":true},\"n\":{\"v\":\"-98px\",\"e\":true},\"t\":{\"v\":\"164px\",\"e\":true},\"m\":{\"v\":\"154px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":6},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":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\":\"power4.out\",\"speed\":1000,\"start\":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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallTitle\",\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontFamily\":\"lato\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"6px\"},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"6px\"},\"m\":{\"v\":\"6px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"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\",\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"Simplicity is not the goal. It is the by-product of a good idea and modest expectations.\\n\",\"alias\":\"CONTENT\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\",\"e\":true},\"t\":{\"v\":\"260px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"260px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-4px\",\"e\":true},\"n\":{\"v\":\"-3px\",\"e\":true},\"t\":{\"v\":\"255px\",\"e\":true},\"m\":{\"v\":\"245px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":7},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2150},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2150},\"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\":1000,\"start\":2150},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallContent\",\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontFamily\":\"lato\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"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\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"text\",\"version\":\"6.2.0\"},\"6\":{\"text\":\"CONTACT US HERE\",\"alias\":\"LINK\",\"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\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"108px\",\"e\":true},\"n\":{\"v\":\"109px\",\"e\":true},\"t\":{\"v\":\"392px\",\"e\":true},\"m\":{\"v\":\"382px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2300},{\"id\":\"frame_999\",\"start\":12000}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2300},\"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\":1000,\"start\":2300},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallLinkBlue\",\"color\":{\"d\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"n\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"t\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"m\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0px\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"lato\",\"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\":{\"v\":\"2px\"},\"n\":{\"v\":\"2px\"},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"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\":\"rgba(153,153,153,1)\",\"e\":true},\"n\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"t\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"m\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"mailto:swag@themepunch.com\",\"link_open_in\":\"_self\",\"jump_to_slide\":55,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"8\":{\"subtype\":\"roundbutton\",\"text\":\"<i class=\\\"fa-angle-left\\\"><\\/i>\",\"alias\":\"PREVIOUS SLIDER\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"71px\",\"e\":true},\"n\":{\"v\":\"51px\",\"e\":true},\"t\":{\"v\":\"175px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"190px\",\"e\":true},\"n\":{\"v\":\"190px\",\"e\":true},\"t\":{\"v\":\"181px\",\"e\":true},\"m\":{\"v\":\"171px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":14},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2400},{\"id\":\"frame_999\",\"start\":12000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"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\"}}},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":2400},\"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.inOut\",\"speed\":1000,\"start\":2400},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-NavButton\",\"color\":{\"d\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"n\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"t\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"m\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"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\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"n\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"t\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"m\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"rgba(51,51,51,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"prev\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":55,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"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\"},\"7\":{\"subtype\":\"roundbutton\",\"text\":\"<i class=\\\"fa-angle-right\\\"><\\/i>\",\"alias\":\"NEXT SLIDE\",\"uid\":7,\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"175px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"190px\",\"e\":true},\"n\":{\"v\":\"190px\",\"e\":true},\"t\":{\"v\":\"130px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":15},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2500},{\"id\":\"frame_999\",\"start\":12000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"z\":\"0\",\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"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\"}}},\"timeline\":{\"ease\":\"power3.inOut\",\"speed\":1000,\"start\":2500},\"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.inOut\",\"speed\":1000,\"start\":2500},\"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\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-NavButton\",\"color\":{\"d\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"n\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"t\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"m\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"n\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"t\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]},\"m\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"rgba(255,255,255,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"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\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"n\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"t\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true},\"m\":{\"v\":\"rgba(153,153,153,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"rgba(51,51,51,1)\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"ease\":\"power1.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"next\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":55,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"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\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(57, 19, 1, '{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Intro\",\"bg\":{\"type\":\"solid\",\"color\":\"#2468ef\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/28822633_562335174124393_1616140708_o-1-scaled.jpg\",\"imageId\":216,\"imageLib\":\"medialibrary\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/agencywebsiteheader\\/slide1.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/agencywebsiteheader\\/slide1.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"delay\":\"\",\"transition\":[\"slideoverdown\"],\"slots\":[\"default\"],\"duration\":[\"1500\"],\"easeIn\":[\"power3.inOut\"],\"easeOut\":[\"power3.inOut\"],\"rotation\":[0]}}', '{\"1\":{\"text\":\"\",\"alias\":\"Macbook\",\"uid\":1,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/macbookpro.png\",\"imageId\":416,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"800px\",\"e\":true},\"t\":{\"v\":\"600px\",\"e\":true},\"m\":{\"v\":\"500px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"600px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"360px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"originalWidth\":1000,\"originalHeight\":600,\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"-30px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"40px\",\"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\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleX\":\"0.9\",\"scaleY\":\"0.9\"},\"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\"}}},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"start\":1000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"start\":1000,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true,\"frameLength\":3000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"effects\":{\"parallax\":\"5\"},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"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}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"image\"},\"2\":{\"text\":\"\",\"alias\":\"Macbook content\",\"uid\":2,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/logo_edited_edited.png\",\"imageId\":61,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"650px\",\"e\":true},\"n\":{\"v\":\"524px\",\"e\":true},\"t\":{\"v\":\"392px\",\"e\":true},\"m\":{\"v\":\"326px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"407px\",\"e\":true},\"n\":{\"v\":\"328px\",\"e\":true},\"t\":{\"v\":\"245px\",\"e\":true},\"m\":{\"v\":\"204px\",\"e\":true}},\"originalWidth\":1931,\"originalHeight\":1829,\"aspectRatio\":{\"d\":{\"v\":1.0557681793329687},\"n\":{\"v\":1.0557681793329687},\"t\":{\"v\":1.0557681793329687},\"m\":{\"v\":1.0557681793329687}},\"scaleProportional\":false,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"-30px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-14px\",\"e\":true},\"n\":{\"v\":\"-10px\",\"e\":true},\"t\":{\"v\":\"105px\",\"e\":true},\"m\":{\"v\":\"55px\",\"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\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":1},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleX\":\"2\",\"scaleY\":\"2\",\"rotationX\":\"0deg\"},\"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\"}}},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"start\":1500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"ease\":\"power3.out\",\"speed\":1000,\"start\":1500,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true,\"frameLength\":3000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"effects\":{\"parallax\":\"5\"},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"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}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"image\"},\"3\":{\"text\":\"\",\"alias\":\"Textbg\",\"uid\":3,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"300px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"300px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"330px\",\"e\":true},\"n\":{\"v\":\"330px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"330px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"330px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"130px\",\"e\":true},\"m\":{\"v\":\"120px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":2},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"opacity\":\"1\",\"rotationX\":\"0deg\"},\"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\"}}},\"timeline\":{\"speed\":1000,\"start\":1500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1000,\"start\":1500,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true,\"frameLength\":3000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"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}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"rgba(51,51,51,1)\",\"borderColor\":\"rgba(0,0,0,0.50)\",\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"4\":{\"text\":\"<span style=\\\"color:#f87c09;font-weight:700 !important;\\\">OUR DESIGN<\\/span>\\nCOLORFUL LIKE NATURE\",\"alias\":\"Title\",\"uid\":4,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\",\"e\":true},\"t\":{\"v\":\"260px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"260px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-98px\",\"e\":true},\"n\":{\"v\":\"-98px\",\"e\":true},\"t\":{\"v\":\"164px\",\"e\":true},\"m\":{\"v\":\"154px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":3},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2000,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true,\"frameLength\":3000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallTitle\",\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Lato\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"6px\"},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"6px\"},\"m\":{\"v\":\"6px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"5\":{\"text\":\"When you come across someone colorful and vibrant maybe in the present it isn\'t so interesting, but, in the past, it sheds a wonderful light onto living life.\",\"alias\":\"Content\",\"uid\":5,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\",\"e\":true},\"t\":{\"v\":\"260px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"260px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"255px\",\"e\":true},\"m\":{\"v\":\"246px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":4},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2150,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2150,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true,\"frameLength\":3000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2150},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallContent\",\"color\":{\"d\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Lato\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"24px\",\"e\":true},\"t\":{\"v\":\"24px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":\"rgba(255,255,255,0.35)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.35)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"6\":{\"text\":\"CONTACT US HERE\",\"alias\":\"Link\",\"uid\":6,\"version\":\"6.2.0\",\"toggle\":{\"text\":\"\"},\"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}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"80px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"108px\",\"e\":true},\"n\":{\"v\":\"109px\",\"e\":true},\"t\":{\"v\":\"392px\",\"e\":true},\"m\":{\"v\":\"382px\",\"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\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":5},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2300,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.out\",\"speed\":1000,\"start\":2300,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"power4.in\",\"speed\":3000,\"start\":9000,\"endWithSlide\":true,\"frameLength\":3000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2300},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"style\":\"Agency-SmallLink\",\"color\":{\"d\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"n\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"t\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"m\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontFamily\":\"Lato\",\"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\":{\"v\":\"2px\"},\"n\":{\"v\":\"2px\"},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"lineHeight\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"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\":\"rgba(248,124,9,1)\",\"e\":true},\"n\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"t\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true},\"m\":{\"v\":\"rgba(248,124,9,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"ease\":\"power1.inOut\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"mailto:swag@themepunch.com\",\"link_open_in\":\"_self\",\"jump_to_slide\":58,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.0\"}'),
(60, 20, 1, '{\"title\":\"Raw Cityscape\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art3.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art3.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide1.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Photography\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"Raw Cityscape\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\",\"e\":true},\"t\":{\"v\":\"79px\",\"e\":true},\"m\":{\"v\":\"99px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":61,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"The only way to make sense out of change is to plunge into it, move with it, and join the dance.\\n\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_24px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":61,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(61, 20, 2, '{\"title\":\"The Kingdom\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art4.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art4.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide2.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Exploration\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"The Kingdom\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"98px\",\"e\":true},\"m\":{\"v\":\"120px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":60,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"Zen does not confuse spirituality with thinking about God while one is peeling potatoes. Zen spirituality is just to peel the potatoes.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_24px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":60,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(62, 20, 3, '{\"title\":\"Going in Deep\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art5.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art5.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide3.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Miscellaneous\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"Going in Deep\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"111px\",\"e\":true},\"t\":{\"v\":\"119px\",\"e\":true},\"m\":{\"v\":\"140px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":60,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"To have faith is to trust yourself to the water. When you swim you don\'t grab hold of the water, because if you do you will sink and drown. Instead you relax, and float.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_36px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"36\\\" height=\\\"36\\\" viewBox=\\\"0 0 36 36\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M10 21H7v8h8v-3h-5v-5zm-3-6h3v-5h5V7H7v8zm19 11h-5v3h8v-8h-3v5zM21 7v3h5v5h3V7h-8z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":60,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(63, 20, 4, '{\"title\":\"Galactic Oneness\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art8.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art8.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide4.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Nightsky\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"Galactic Oneness\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"111px\",\"e\":true},\"n\":{\"v\":\"111px\",\"e\":true},\"t\":{\"v\":\"119px\",\"e\":true},\"m\":{\"v\":\"140px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":60,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"Things are as they are. Looking out into it the universe at night, we make no comparisons between right and wrong stars, nor between well and badly arranged constellations.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_36px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"36\\\" height=\\\"36\\\" viewBox=\\\"0 0 36 36\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M10 21H7v8h8v-3h-5v-5zm-3-6h3v-5h5V7H7v8zm19 11h-5v3h8v-8h-3v5zM21 7v3h5v5h3V7h-8z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":60,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(64, 20, 5, '{\"title\":\"Wonderful Sunrise\",\"bg\":{\"type\":\"html5\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/sunshinecover.jpg\",\"mpeg\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/sunrise.mp4\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loopandnoslidestop\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/sunshinecover.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide5.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"HTML5 Video\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"Wonderful Sunrise\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"99px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":60,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"You and I are all as much continuous with the physical universe as a wave is continuous with the ocean. \",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_36px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"36\\\" height=\\\"36\\\" viewBox=\\\"0 0 36 36\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M10 21H7v8h8v-3h-5v-5zm-3-6h3v-5h5V7H7v8zm19 11h-5v3h8v-8h-3v5zM21 7v3h5v5h3V7h-8z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":60,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(65, 20, 6, '{\"title\":\"Vast Deserts\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art7.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art7.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide6.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Traveling\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"Vast Deserts\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"79px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":60,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"But the attitude of faith is to let go, and become open to truth, whatever it might turn out to be. \",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_36px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"36\\\" height=\\\"36\\\" viewBox=\\\"0 0 36 36\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M10 21H7v8h8v-3h-5v-5zm-3-6h3v-5h5V7H7v8zm19 11h-5v3h8v-8h-3v5zM21 7v3h5v5h3V7h-8z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":60,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(66, 21, 1, '{\"title\":\"Raw Cityscape\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art3.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art3.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide1.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Photography\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"Raw Cityscape\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\",\"e\":true},\"t\":{\"v\":\"79px\",\"e\":true},\"m\":{\"v\":\"99px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":67,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"The only way to make sense out of change is to plunge into it, move with it, and join the dance.\\n\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_24px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":67,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(67, 21, 2, '{\"title\":\"The Kingdom\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art4.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art4.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide2.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Exploration\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"The Kingdom\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"98px\",\"e\":true},\"m\":{\"v\":\"120px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":66,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"Zen does not confuse spirituality with thinking about God while one is peeling potatoes. Zen spirituality is just to peel the potatoes.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_24px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"24\\\" height=\\\"24\\\" viewBox=\\\"0 0 24 24\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":66,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(68, 21, 3, '{\"title\":\"Going in Deep\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art5.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art5.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide3.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Miscellaneous\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"Going in Deep\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"111px\",\"e\":true},\"t\":{\"v\":\"119px\",\"e\":true},\"m\":{\"v\":\"140px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":66,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"To have faith is to trust yourself to the water. When you swim you don\'t grab hold of the water, because if you do you will sink and drown. Instead you relax, and float.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_36px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"36\\\" height=\\\"36\\\" viewBox=\\\"0 0 36 36\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M10 21H7v8h8v-3h-5v-5zm-3-6h3v-5h5V7H7v8zm19 11h-5v3h8v-8h-3v5zM21 7v3h5v5h3V7h-8z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":66,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(69, 21, 4, '{\"title\":\"Galactic Oneness\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art8.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art8.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide4.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Nightsky\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"Galactic Oneness\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"111px\",\"e\":true},\"n\":{\"v\":\"111px\",\"e\":true},\"t\":{\"v\":\"119px\",\"e\":true},\"m\":{\"v\":\"140px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":66,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"Things are as they are. Looking out into it the universe at night, we make no comparisons between right and wrong stars, nor between well and badly arranged constellations.\",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_36px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"36\\\" height=\\\"36\\\" viewBox=\\\"0 0 36 36\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M10 21H7v8h8v-3h-5v-5zm-3-6h3v-5h5V7H7v8zm19 11h-5v3h8v-8h-3v5zM21 7v3h5v5h3V7h-8z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":66,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(70, 21, 5, '{\"title\":\"Wonderful Sunrise\",\"bg\":{\"type\":\"html5\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/sunshinecover.jpg\",\"mpeg\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/sunrise.mp4\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"loop\":\"loopandnoslidestop\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/sunshinecover.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide5.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"HTML5 Video\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"Wonderful Sunrise\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"99px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":66,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"You and I are all as much continuous with the physical universe as a wave is continuous with the ocean. \",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_36px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"36\\\" height=\\\"36\\\" viewBox=\\\"0 0 36 36\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M10 21H7v8h8v-3h-5v-5zm-3-6h3v-5h5V7H7v8zm19 11h-5v3h8v-8h-3v5zM21 7v3h5v5h3V7h-8z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":66,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_slides` (`id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(71, 21, 6, '{\"title\":\"Vast Deserts\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art7.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/art7.jpg\",\"customAdminThumbSrc\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/templates\\/\\/carouselgallery\\/slide6.jpg\",\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"Traveling\",\"l\":\"20\"}]},\"timeline\":{\"delay\":\"\",\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"set\":true,\"duration\":\"30000\",\"ease\":\"none\",\"fitEnd\":\"120\"},\"version\":\"6.2.0\"}', '{\"2\":{\"text\":\" \",\"alias\":\"GRADIENT BG\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"250px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":5},\"attributes\":{\"classes\":\"tp-gradientstyle\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":0},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"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\":\"power4.out\",\"speed\":2000,\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"backgroundColor\":\"transparent\",\"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},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"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\"},\"1\":{\"text\":\"Vast Deserts\",\"alias\":\"TITLE\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"79px\",\"e\":true},\"m\":{\"v\":\"100px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":1},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":200},\"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\":2000,\"start\":200},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"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\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":66,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"But the attitude of faith is to let go, and become open to truth, whatever it might turn out to be. \",\"alias\":\"SUBTITLE\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"580px\",\"e\":true},\"n\":{\"v\":\"480px\",\"e\":true},\"t\":{\"v\":\"340px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"580px\"},\"position\":{\"x\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"35px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":7},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":2},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":400},\"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\":2000,\"start\":400},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"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\":\"rgba(255,255,255,0.75)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"t\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.75)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"4\":{\"text\":\" \",\"alias\":\"FULLSCREEN\",\"uid\":4,\"svg\":{\"source\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/svg\\/navigation\\/ic_fullscreen_36px.svg\",\"renderedData\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"36\\\" height=\\\"36\\\" viewBox=\\\"0 0 36 36\\\" style=\\\"stroke-dashoffset: 0px; stroke-dasharray: 0; stroke-width: 0px; stroke: rgba(255, 255, 255, 0); fill: rgba(255, 255, 255, 0.498039);\\\"><path d=\\\"M10 21H7v8h8v-3h-5v-5zm-3-6h3v-5h5V7H7v8zm19 11h-5v3h8v-8h-3v5zM21 7v3h5v5h3V7h-8z\\\"><\\/path><\\/svg><div class=\\\"ui-rotatable-handle ui-draggable\\\"><\\/div>\"},\"toggle\":{\"set\":true},\"size\":{\"width\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"originalWidth\":\"50px\",\"originalHeight\":\"50px\"},\"position\":{\"x\":{\"d\":{\"v\":\"721px\",\"e\":true},\"n\":{\"v\":\"620px\",\"e\":true},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"367px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"9px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":3},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9300}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"20px\"},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power4.out\",\"speed\":2000,\"start\":600},\"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\":2000,\"start\":600},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,0.50)\"},\"t\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true},\"m\":{\"v\":\"rgba(255,255,255,0.50)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"150\",\"ease\":\"power2.inOut\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"togglefullscreen\",\"image_link\":\"#\",\"link_open_in\":\"_self\",\"jump_to_slide\":66,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"svg\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_slides_bkp` (
  `id` int(9) NOT NULL,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

INSERT INTO `wp_revslider_static_slides` (`id`, `slider_id`, `params`, `layers`, `settings`) VALUES
(1, 1, '[]', '', '{\"temp\":true}'),
(2, 2, '{\"version\":\"6.2.0\"}', '[]', '{\"version\":\"6.2.0\"}'),
(3, 3, '{\"static\":{\"overflow\":\"visible\"},\"version\":\"6.2.0\"}', '[]', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(4, 5, '{\"static\":{\"overflow\":\"visible\"},\"version\":\"6.2.0\"}', '{\"1\":{\"text\":\" \",\"alias\":\"LEFT CORNER\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"1500px\",\"e\":true},\"n\":{\"v\":\"1500px\"},\"t\":{\"v\":\"1500px\"},\"m\":{\"v\":\"1500px\"}},\"height\":{\"d\":{\"v\":\"1500px\",\"e\":true},\"n\":{\"v\":\"1500px\"},\"t\":{\"v\":\"1500px\"},\"m\":{\"v\":\"1500px\"}},\"originalWidth\":\"1500px\",\"originalHeight\":\"1500px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-750px\",\"e\":true},\"n\":{\"v\":\"-750px\"},\"t\":{\"v\":\"-750px\"},\"m\":{\"v\":\"-750px\"}},\"y\":{\"d\":{\"v\":\"-1850px\",\"e\":true},\"n\":{\"v\":\"-1850px\"},\"t\":{\"v\":\"-1850px\"},\"m\":{\"v\":\"-1850px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":9},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\":45,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.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\":45,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"15\"},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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\"}},\"lineHeight\":{\"d\":{\"e\":true}},\"backgroundColor\":\"rgba(255,255,255,1)\",\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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,\"t\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"},\"2\":{\"text\":\" \",\"alias\":\"RIGHT CORNER\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"v\":\"1500px\",\"e\":true},\"n\":{\"v\":\"1500px\"},\"t\":{\"v\":\"1500px\"},\"m\":{\"v\":\"1500px\"}},\"height\":{\"d\":{\"v\":\"1500px\",\"e\":true},\"n\":{\"v\":\"1500px\"},\"t\":{\"v\":\"1500px\"},\"m\":{\"v\":\"1500px\"}},\"originalWidth\":\"1500px\",\"originalHeight\":\"1500px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-750px\",\"e\":true},\"n\":{\"v\":\"-750px\"},\"t\":{\"v\":\"-750px\"},\"m\":{\"v\":\"-750px\"}},\"y\":{\"d\":{\"v\":\"-1850px\",\"e\":true},\"n\":{\"v\":\"-1850px\"},\"t\":{\"v\":\"-1850px\"},\"m\":{\"v\":\"-1850px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":10},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9300}],\"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\":45,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.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\":45,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"15\"},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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\"}},\"lineHeight\":{\"d\":{\"e\":true}},\"backgroundColor\":\"rgba(255,255,255,1)\",\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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,\"t\":false},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}'),
(5, 9, '[]', '', '{\"temp\":true}'),
(6, 10, '{\"version\":\"6.2.0\",\"bg\":{\"image\":\"\"},\"image\":\"\"}', '[]', '{\"version\":\"6.2.0\"}'),
(7, 11, '{\"version\":\"6.2.0\",\"bg\":{\"image\":\"\"},\"image\":\"\"}', '[]', '{\"version\":\"6.2.0\"}'),
(8, 12, '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":false,\"direction\":\"horizontal\",\"delay\":500,\"time\":750,\"easing\":\"power2.inOut\",\"animateOut\":\"fade\",\"moveTo\":{\"d\":{\"v\":50,\"e\":false,\"u\":\"\"},\"n\":{\"v\":50,\"e\":false,\"u\":\"\"},\"t\":{\"v\":50,\"e\":false,\"u\":\"\"},\"m\":{\"v\":50,\"e\":false,\"u\":\"\"}},\"teaser\":{\"set\":\"none\",\"type\":\"repel\",\"distance\":5,\"speed\":1500,\"easing\":\"ease-in-out\",\"delay\":0},\"shift\":{\"set\":false,\"offset\":10,\"speed\":300,\"easing\":\"ease\",\"delay\":0},\"bg\":{\"type\":\"trans\",\"color\":\"#e7e7e7\",\"externalSrc\":\"\",\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"image\":\"\",\"imageId\":\"\",\"imageSourceType\":\"\",\"mpeg\":\"\",\"vimeo\":\"\",\"youtube\":\"\",\"width\":\"\",\"height\":\"\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"dottedOverlay\":\"none\",\"startAt\":\"\",\"endAt\":\"\",\"forceCover\":true,\"forceRewind\":true,\"loop\":\"none\",\"mute\":true,\"nextSlideAtEnd\":false,\"ratio\":\"16:9\",\"speed\":1,\"volume\":\"\"},\"videoId\":\"\"}}},\"static\":{\"isstatic\":true,\"lastEdited\":\"front\"},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"version\":\"6.2.0\",\"bg\":{\"image\":\"\"}}', '{\"18\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Classic Cars\",\"alias\":\"Main Heading\",\"uid\":18,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\",\"e\":true},\"t\":{\"v\":\"155px\"},\"m\":{\"v\":\"95px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":9},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Playfair Display\",\"fontSize\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"90px\",\"e\":true},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"43px\"}},\"letterSpacing\":{\"d\":{\"v\":\"-3px\",\"e\":true},\"n\":{\"v\":\"-3px\"},\"t\":{\"v\":\"-2px\"},\"m\":{\"v\":\"-1px\"}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"90px\",\"e\":true},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"43px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"19\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Evolution\",\"alias\":\"Main Subheading\",\"uid\":19,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"y\":{\"d\":{\"v\":\"160px\",\"e\":true},\"n\":{\"v\":\"140px\",\"e\":true},\"t\":{\"v\":\"108px\"},\"m\":{\"v\":\"66px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#a6a4a4\",\"e\":true},\"n\":{\"v\":\"#a6a4a4\"},\"t\":{\"v\":\"#a6a4a4\"},\"m\":{\"v\":\"#a6a4a4\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Playfair Display\",\"fontSize\":{\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"letterSpacing\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"8px\"}},\"lineHeight\":{\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(9, 13, '{\"addOns\":{\"revslider-beforeafter-addon\":{\"enable\":false,\"direction\":\"horizontal\",\"delay\":500,\"time\":750,\"easing\":\"power2.inOut\",\"animateOut\":\"fade\",\"moveTo\":{\"d\":{\"v\":50,\"e\":false,\"u\":\"\"},\"n\":{\"v\":50,\"e\":false,\"u\":\"\"},\"t\":{\"v\":50,\"e\":false,\"u\":\"\"},\"m\":{\"v\":50,\"e\":false,\"u\":\"\"}},\"teaser\":{\"set\":\"none\",\"type\":\"repel\",\"distance\":5,\"speed\":1500,\"easing\":\"ease-in-out\",\"delay\":0},\"shift\":{\"set\":false,\"offset\":10,\"speed\":300,\"easing\":\"ease\",\"delay\":0},\"bg\":{\"type\":\"trans\",\"color\":\"#e7e7e7\",\"externalSrc\":\"\",\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"image\":\"\",\"imageId\":\"\",\"imageSourceType\":\"\",\"mpeg\":\"\",\"vimeo\":\"\",\"youtube\":\"\",\"width\":\"\",\"height\":\"\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"dottedOverlay\":\"none\",\"startAt\":\"\",\"endAt\":\"\",\"forceCover\":true,\"forceRewind\":true,\"loop\":\"none\",\"mute\":true,\"nextSlideAtEnd\":false,\"ratio\":\"16:9\",\"speed\":1,\"volume\":\"\"},\"videoId\":\"\"}}},\"static\":{\"isstatic\":true,\"lastEdited\":\"front\"},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"version\":\"6.2.0\",\"bg\":{\"image\":\"\"}}', '{\"18\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Classic Cars\",\"alias\":\"Main Heading\",\"uid\":18,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\",\"e\":true},\"t\":{\"v\":\"155px\"},\"m\":{\"v\":\"95px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":9},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Playfair Display\",\"fontSize\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"90px\",\"e\":true},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"43px\"}},\"letterSpacing\":{\"d\":{\"v\":\"-3px\",\"e\":true},\"n\":{\"v\":\"-3px\"},\"t\":{\"v\":\"-2px\"},\"m\":{\"v\":\"-1px\"}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"90px\",\"e\":true},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"43px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"19\":{\"addOns\":{\"revslider-beforeafter-addon\":{\"position\":\"before\"}},\"text\":\"Evolution\",\"alias\":\"Main Subheading\",\"uid\":19,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"y\":{\"d\":{\"v\":\"160px\",\"e\":true},\"n\":{\"v\":\"140px\",\"e\":true},\"t\":{\"v\":\"108px\"},\"m\":{\"v\":\"66px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#a6a4a4\",\"e\":true},\"n\":{\"v\":\"#a6a4a4\"},\"t\":{\"v\":\"#a6a4a4\"},\"m\":{\"v\":\"#a6a4a4\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Playfair Display\",\"fontSize\":{\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"letterSpacing\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"8px\"}},\"lineHeight\":{\"n\":{\"v\":\"40px\",\"e\":true},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.2.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\",\"version\":\"6.2.0\"}}', '{\"version\":\"6.2.0\"}'),
(10, 7, '[]', '', '{\"temp\":true}'),
(11, 15, '[]', '', '{\"temp\":true}'),
(12, 17, '[]', '', '{\"temp\":true}');
INSERT INTO `wp_revslider_static_slides` (`id`, `slider_id`, `params`, `layers`, `settings`) VALUES
(13, 18, '{\"version\":\"6.2.0\"}', '{\"1\":{\"text\":\"Image 1\",\"alias\":\"LOGO\",\"uid\":1,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/alias\\/whitehorse_logo.png\",\"imageId\":425},\"size\":{\"width\":{\"d\":{\"v\":\"92px\",\"e\":true},\"n\":{\"v\":\"92px\"},\"t\":{\"v\":\"92px\",\"e\":true},\"m\":{\"v\":\"92px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"originalWidth\":184,\"originalHeight\":68,\"aspectRatio\":{\"d\":{\"v\":2.7058823529411766},\"n\":{\"v\":2.7058823529411766},\"t\":{\"v\":2.7058823529411766},\"m\":{\"v\":2.7058823529411766}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"10px\",\"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\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":18},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":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\":\"power2.inOut\",\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"cursor\":\"pointer\",\"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\":{\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"mouseenter\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"14\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseleave\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"14\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseenter\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"3\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseenter\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"4\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseleave\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"3\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseleave\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"4\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.2.0\"},\"2\":{\"text\":\"NYC\",\"alias\":\"LOGO TEXT\",\"uid\":2,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"45px\",\"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\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":19},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":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\":\"power2.inOut\",\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"style\":\"Agency-LogoText\",\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Lato\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"1px\"},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"1px\"}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":{\"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\":{\"color\":\"rgba(255,255,255,1)\",\"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\":\"text\",\"version\":\"6.2.0\"},\"14\":{\"text\":\"SOUTH MAIN STREET 542, T. 0800-987654\",\"alias\":\"CONTACT INFO\",\"uid\":14,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"83px\",\"e\":true},\"n\":{\"v\":\"83px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"45px\",\"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},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":20},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":3250},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":100,\"start\":3250},\"chars\":{\"use\":true,\"delay\":\"2\",\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\"},\"words\":{\"delay\":\"2\"},\"lines\":{\"delay\":\"2\"}},\"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.inOut\",\"speed\":100,\"start\":3250,\"actionTriggered\":true},\"chars\":{\"use\":true,\"delay\":\"2\"},\"words\":{\"delay\":\"2\"},\"lines\":{\"delay\":\"2\"}},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"auto\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"style\":\"Agency-LogoText\",\"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}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Lato\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"1px\"},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"1px\"}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"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\":{\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"3\":{\"text\":\"Image 9\",\"alias\":\"ARROW1\",\"uid\":3,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/alias\\/arrow1.png\",\"imageId\":426},\"size\":{\"width\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"29px\"},\"m\":{\"v\":\"29px\"}},\"originalWidth\":100,\"originalHeight\":29,\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":3.4482758620689653},\"n\":{\"v\":3.4482758620689653},\"t\":{\"v\":3.4482758620689653},\"m\":{\"v\":3.4482758620689653}}},\"position\":{\"x\":{\"d\":{\"v\":\"110px\",\"e\":true},\"n\":{\"v\":\"120px\",\"e\":true},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"120px\"}},\"y\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"63px\"},\"m\":{\"v\":\"63px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":21},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9300}],\"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\":\"0.2\",\"scaleY\":\"0.2\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":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\":\"back.out\",\"speed\":500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"auto\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"speed\":2000,\"originX\":50,\"originY\":50}},\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"waitout\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"4\":{\"text\":\"Hover Me\",\"alias\":\"ARROW1 TEXT\",\"uid\":4,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"178px\",\"e\":true},\"n\":{\"v\":\"188px\",\"e\":true},\"t\":{\"v\":\"188px\"},\"m\":{\"v\":\"188px\"}},\"y\":{\"d\":{\"v\":\"75px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"85px\"},\"m\":{\"v\":\"85px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":22},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":1250},{\"id\":\"frame_999\",\"start\":9300}],\"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.5\",\"scaleY\":\"0.5\",\"opacity\":\"0\",\"rotationX\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"0deg\",\"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\"}}},\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":1250},\"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\":\"back.out\",\"speed\":1000,\"start\":1250},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"auto\":true,\"actionTriggered\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"speed\":1500,\"originX\":50,\"originY\":50}},\"idle\":{\"style\":\"Agency-ArrowTooltip\",\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Permanent Marker\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"waitout\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"5\":{\"text\":\"Image 11\",\"alias\":\"ARROW2\",\"uid\":5,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/alias\\/arrow2.png\",\"imageId\":427},\"size\":{\"width\":{\"d\":{\"v\":\"79px\",\"e\":true},\"n\":{\"v\":\"79px\",\"e\":true},\"t\":{\"v\":\"79px\"},\"m\":{\"v\":\"79px\"}},\"height\":{\"d\":{\"v\":\"74px\",\"e\":true},\"n\":{\"v\":\"74px\",\"e\":true},\"t\":{\"v\":\"74px\"},\"m\":{\"v\":\"74px\"}},\"originalWidth\":79,\"originalHeight\":74,\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":1.0675675675675675},\"n\":{\"v\":1.0675675675675675},\"t\":{\"v\":1.0675675675675675},\"m\":{\"v\":1.0675675675675675}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"44px\",\"e\":true},\"n\":{\"v\":\"54px\",\"e\":true},\"t\":{\"v\":\"54px\"},\"m\":{\"v\":\"54px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":23},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":9300}],\"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\":\"0.2\",\"scaleY\":\"0.2\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":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\":\"back.out\",\"speed\":500,\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"speed\":2000,\"originX\":50,\"originY\":50}},\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"scroll_under\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"6\":{\"text\":\"Scroll for More\",\"alias\":\"ARROW2 TEXT\",\"uid\":6,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":24},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":2250},{\"id\":\"frame_999\",\"start\":9300}],\"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.5\",\"scaleY\":\"0.5\",\"opacity\":\"0\",\"rotationX\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"0deg\",\"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\"}}},\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":2250},\"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\":\"back.out\",\"speed\":1000,\"start\":2250},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"speed\":1500,\"originX\":50,\"originY\":50}},\"idle\":{\"style\":\"Agency-ArrowTooltip\",\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Permanent Marker\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"12\":{\"text\":\"Image 18\",\"alias\":\"ARROW3\",\"uid\":12,\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/alias\\/arrow3.png\",\"imageId\":428},\"size\":{\"width\":{\"d\":{\"v\":\"149px\",\"e\":true},\"n\":{\"v\":\"149px\",\"e\":true},\"t\":{\"v\":\"149px\"},\"m\":{\"v\":\"149px\"}},\"height\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\"},\"m\":{\"v\":\"49px\"}},\"originalWidth\":149,\"originalHeight\":49,\"scaleProportional\":false,\"aspectRatio\":{\"d\":{\"v\":3.0408163265306123},\"n\":{\"v\":3.0408163265306123},\"t\":{\"v\":3.0408163265306123},\"m\":{\"v\":3.0408163265306123}}},\"position\":{\"x\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"85px\"},\"m\":{\"v\":\"85px\"}},\"y\":{\"d\":{\"v\":\"63px\",\"e\":true},\"n\":{\"v\":\"73px\",\"e\":true},\"t\":{\"v\":\"73px\"},\"m\":{\"v\":\"73px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":25},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":3000},{\"id\":\"frame_999\",\"start\":9300}],\"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\":\"0.2\",\"scaleY\":\"0.2\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":3000},\"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\":\"back.out\",\"speed\":500,\"start\":3000},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"speed\":2000,\"originX\":50,\"originY\":50}},\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"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},\"n\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"power1.inOut\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.2.0\"},\"13\":{\"text\":\"Get in Touch\",\"alias\":\"ARROW3 TEXT\",\"uid\":13,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"218px\",\"e\":true},\"n\":{\"v\":\"218px\",\"e\":true},\"t\":{\"v\":\"218px\"},\"m\":{\"v\":\"218px\"}},\"y\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"59px\",\"e\":true},\"t\":{\"v\":\"59px\"},\"m\":{\"v\":\"59px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":26},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":3250},{\"id\":\"frame_999\",\"start\":9300}],\"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.5\",\"scaleY\":\"0.5\",\"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\"}}},\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":3250},\"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\":\"back.out\",\"speed\":1000,\"start\":3250},\"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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"},\"speed\":1500,\"originX\":50,\"originY\":50}},\"idle\":{\"style\":\"Agency-ArrowTooltip\",\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Permanent Marker\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\",\"version\":\"6.2.0\"},\"9\":{\"text\":\"<i class=\\\"pe-7s-mail\\\"><\\/i>\",\"alias\":\"SOCIAL MAIL\",\"uid\":9,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"height\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"originalWidth\":\"30px\",\"originalHeight\":\"30px\"},\"position\":{\"x\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"-50px\",\"e\":true},\"m\":{\"v\":\"-50px\"}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":27},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":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\":\"power2.inOut\",\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"style\":\"Agency-SmallSocial\",\"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)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Arial\",\"fontSize\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"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,\"color\":\"rgba(51,51,51,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#333333\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"mailto:swag@themepunch.com\",\"link_open_in\":\"_self\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"10\":{\"text\":\"<i class=\\\"fa-facebook\\\"><\\/i>\",\"alias\":\"SOCIAL FACEBOOK\",\"uid\":10,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"height\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"originalWidth\":\"30px\",\"originalHeight\":\"30px\"},\"position\":{\"x\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"19px\",\"e\":true},\"m\":{\"v\":\"19px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":15},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":28},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":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\":\"power2.inOut\",\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"style\":\"Agency-SmallSocial\",\"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)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Arial\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"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,\"color\":\"rgba(51,51,51,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#333333\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/www.facebook.com\\/themepunchofficial\",\"link_open_in\":\"_blank\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"},\"11\":{\"text\":\"<i class=\\\"fa-twitter\\\"><\\/i>\",\"alias\":\"SOCIAL TWITTER\",\"uid\":11,\"media\":{\"imageUrl\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"height\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"originalWidth\":\"30px\",\"originalHeight\":\"30px\"},\"position\":{\"x\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":16},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":29},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9300}],\"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\"},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":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\":\"power2.inOut\",\"start\":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\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"style\":\"Agency-SmallSocial\",\"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)\"}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Arial\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"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,\"color\":\"rgba(51,51,51,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#333333\"}},\"actions\":{\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/twitter.com\\/themepunch\",\"link_open_in\":\"_blank\",\"jump_to_slide\":54,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.2.0\"}}', '{\"0\":\"\",\"version\":\"6.2.0\"}');
INSERT INTO `wp_revslider_static_slides` (`id`, `slider_id`, `params`, `layers`, `settings`) VALUES
(14, 19, '{\"static\":{\"isstatic\":true},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]}}', '{\"1\":{\"text\":\"\",\"alias\":\"Logo\",\"uid\":1,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/2020\\/11\\/logo_edited_edited.png\",\"imageId\":61,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"92px\",\"e\":true},\"n\":{\"v\":\"92px\"},\"t\":{\"v\":\"92px\",\"e\":true},\"m\":{\"v\":\"92px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"87px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"originalWidth\":1931,\"originalHeight\":1829,\"aspectRatio\":{\"d\":{\"v\":1.0557681793329687},\"n\":{\"v\":1.0557681793329687},\"t\":{\"v\":1.0557681793329687},\"m\":{\"v\":1.0557681793329687}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"10px\",\"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\":5},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":18},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"cursor\":\"pointer\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"mouseenter\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":57,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"14\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseleave\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":57,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"14\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseenter\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":57,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"3\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseenter\",\"action\":\"start_out\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":57,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"4\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseleave\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":57,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"3\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"},{\"tooltip_event\":\"mouseleave\",\"action\":\"start_in\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":57,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"4\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\"},\"type\":\"image\"},\"2\":{\"text\":\"NYC\",\"alias\":\"Logo text\",\"uid\":2,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"3px\"},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"148px\",\"e\":true},\"n\":{\"v\":\"148px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"45px\",\"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\":6},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":19},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"Agency-LogoText\",\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontFamily\":\"Lato\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"1px\"},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"1px\"}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"3\":{\"text\":\"\",\"alias\":\"Arrow1\",\"uid\":3,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/alias\\/arrow1.png\",\"imageId\":426,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\",\"e\":true},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\",\"e\":true},\"t\":{\"v\":\"29px\"},\"m\":{\"v\":\"29px\"}},\"originalWidth\":100,\"originalHeight\":29,\"aspectRatio\":{\"d\":{\"v\":3.4482758620689653},\"n\":{\"v\":3.4482758620689653},\"t\":{\"v\":3.4482758620689653},\"m\":{\"v\":3.4482758620689653}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"110px\",\"e\":true},\"n\":{\"v\":\"120px\",\"e\":true},\"t\":{\"v\":\"120px\"},\"m\":{\"v\":\"120px\"}},\"y\":{\"d\":{\"v\":\"53px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"63px\"},\"m\":{\"v\":\"63px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":21},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleX\":\"0.2\",\"scaleY\":\"0.2\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":1000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":1000,\"endWithSlide\":false,\"frameLength\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"actionTriggered\":true,\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"auto\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"speed\":2000,\"originX\":50,\"originY\":50,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"yr\":\"1px\",\"xr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[],\"animationoverwrite\":\"waitout\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\"},\"4\":{\"text\":\"Hover Me\",\"alias\":\"Arrow1 text\",\"uid\":4,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"178px\",\"e\":true},\"n\":{\"v\":\"188px\",\"e\":true},\"t\":{\"v\":\"188px\"},\"m\":{\"v\":\"188px\"}},\"y\":{\"d\":{\"v\":\"75px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"85px\"},\"m\":{\"v\":\"85px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":22},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleX\":\"0.5\",\"scaleY\":\"0.5\",\"rotationX\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"0deg\"},\"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\"}}},\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":1250,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":1250,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"actionTriggered\":true,\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"auto\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"speed\":1500,\"originX\":50,\"originY\":50,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"yr\":\"1px\",\"xr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1250},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"Agency-ArrowTooltip\",\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontFamily\":\"Permanent Marker\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"action\":[],\"animationoverwrite\":\"waitout\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"5\":{\"text\":\"\",\"alias\":\"Arrow2\",\"uid\":5,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/alias\\/arrow2.png\",\"imageId\":427,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"79px\",\"e\":true},\"n\":{\"v\":\"79px\",\"e\":true},\"t\":{\"v\":\"79px\"},\"m\":{\"v\":\"79px\"}},\"height\":{\"d\":{\"v\":\"74px\",\"e\":true},\"n\":{\"v\":\"74px\",\"e\":true},\"t\":{\"v\":\"74px\"},\"m\":{\"v\":\"74px\"}},\"originalWidth\":79,\"originalHeight\":74,\"aspectRatio\":{\"d\":{\"v\":1.0675675675675675},\"n\":{\"v\":1.0675675675675675},\"t\":{\"v\":1.0675675675675675},\"m\":{\"v\":1.0675675675675675}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"44px\",\"e\":true},\"n\":{\"v\":\"54px\",\"e\":true},\"t\":{\"v\":\"54px\"},\"m\":{\"v\":\"54px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":23},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleX\":\"0.2\",\"scaleY\":\"0.2\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":2000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":2000,\"endWithSlide\":false,\"frameLength\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"speed\":2000,\"originX\":50,\"originY\":50,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"yr\":\"1px\",\"xr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"cursor\":\"pointer\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"click\",\"action\":\"scroll_under\",\"image_link\":\"\",\"link_open_in\":\"_self\",\"jump_to_slide\":57,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"jquery\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\"},\"6\":{\"text\":\"Scroll for More\",\"alias\":\"Arrow2 text\",\"uid\":6,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":24},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleX\":\"0.5\",\"scaleY\":\"0.5\",\"rotationX\":\"0deg\",\"rotationY\":\"0deg\",\"rotationZ\":\"0deg\"},\"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\"}}},\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":2250,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":2250,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"speed\":1500,\"originX\":50,\"originY\":50,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"yr\":\"1px\",\"xr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2250},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"Agency-ArrowTooltip\",\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontFamily\":\"Permanent Marker\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"9\":{\"text\":\"<i class=\\\"pe-7s-mail\\\"><\\/i>\",\"alias\":\"Social mail\",\"uid\":9,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"height\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"originalWidth\":\"30px\",\"originalHeight\":\"30px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"120px\"},\"t\":{\"v\":\"-50px\",\"e\":true},\"m\":{\"v\":\"-50px\"}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":27},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"Agency-SmallSocial\",\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontFamily\":\"Arial\",\"fontSize\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"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,\"color\":\"rgba(51,51,51,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#333333\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"mailto:swag@themepunch.com\",\"link_open_in\":\"_self\",\"jump_to_slide\":57,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"10\":{\"text\":\"<i class=\\\"fa-facebook\\\"><\\/i>\",\"alias\":\"Social facebook\",\"uid\":10,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"height\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"originalWidth\":\"30px\",\"originalHeight\":\"30px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"19px\",\"e\":true},\"m\":{\"v\":\"19px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":15},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":28},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"Agency-SmallSocial\",\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontFamily\":\"Arial\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"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,\"color\":\"rgba(51,51,51,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#333333\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/www.facebook.com\\/themepunchofficial\",\"link_open_in\":\"_blank\",\"jump_to_slide\":57,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"11\":{\"text\":\"<i class=\\\"fa-twitter\\\"><\\/i>\",\"alias\":\"Social twitter\",\"uid\":11,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"height\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"originalWidth\":\"30px\",\"originalHeight\":\"30px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":16},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":29},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}}},\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power2.inOut\",\"start\":500,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"Agency-SmallSocial\",\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontFamily\":\"Arial\",\"fontSize\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\",\"e\":true},\"m\":{\"v\":\"25px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"cursor\":\"pointer\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"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,\"color\":\"rgba(51,51,51,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"ease\":\"power1.inOut\",\"svg\":{\"color\":\"#333333\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"https:\\/\\/twitter.com\\/themepunch\",\"link_open_in\":\"_blank\",\"jump_to_slide\":57,\"scrollunder_offset\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"12\":{\"text\":\"\",\"alias\":\"Arrow3\",\"uid\":12,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"http:\\/\\/localhost:8888\\/wordpress\\/wp-content\\/uploads\\/revslider\\/alias\\/arrow3.png\",\"imageId\":428,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"149px\",\"e\":true},\"n\":{\"v\":\"149px\",\"e\":true},\"t\":{\"v\":\"149px\"},\"m\":{\"v\":\"149px\"}},\"height\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"49px\"},\"m\":{\"v\":\"49px\"}},\"originalWidth\":149,\"originalHeight\":49,\"aspectRatio\":{\"d\":{\"v\":3.0408163265306123},\"n\":{\"v\":3.0408163265306123},\"t\":{\"v\":3.0408163265306123},\"m\":{\"v\":3.0408163265306123}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"85px\"},\"m\":{\"v\":\"85px\"}},\"y\":{\"d\":{\"v\":\"63px\",\"e\":true},\"n\":{\"v\":\"73px\",\"e\":true},\"t\":{\"v\":\"73px\"},\"m\":{\"v\":\"73px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":12},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":25},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleX\":\"0.2\",\"scaleY\":\"0.2\"},\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":3000,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":3000,\"endWithSlide\":false,\"frameLength\":500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"speed\":2000,\"originX\":50,\"originY\":50,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"yr\":\"1px\",\"xr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":3000},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"cursor\":\"pointer\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"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)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\"}}}},\"hover\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"power1.inOut\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\"},\"13\":{\"text\":\"Get in Touch\",\"alias\":\"Arrow3 text\",\"uid\":13,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"218px\",\"e\":true},\"n\":{\"v\":\"218px\",\"e\":true},\"t\":{\"v\":\"218px\"},\"m\":{\"v\":\"218px\"}},\"y\":{\"d\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"59px\",\"e\":true},\"t\":{\"v\":\"59px\"},\"m\":{\"v\":\"59px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\",\"e\":true},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\",\"e\":true},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":26},\"timeline\":{\"frames\":{\"frame_0\":{\"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\"}},\"scaleX\":\"0.5\",\"scaleY\":\"0.5\"},\"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\"}}},\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":3250,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.out\",\"speed\":1000,\"start\":3250,\"endWithSlide\":false,\"frameLength\":1000},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"speed\":1500,\"originX\":50,\"originY\":50,\"curved\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"yr\":\"1px\",\"xr\":\"1px\"},\"frame_999\":{\"xr\":\"1px\",\"yr\":\"1px\"}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":3250},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"Agency-ArrowTooltip\",\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontFamily\":\"Permanent Marker\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\",\"e\":true},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"n\":{\"v\":\"rgba(51,51,51,1)\",\"e\":true},\"t\":{\"v\":\"rgba(51,51,51,1)\"},\"m\":{\"v\":\"rgba(51,51,51,1)\"}}}},\"hover\":{\"color\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"animationoverwrite\":\"wait\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"14\":{\"text\":\"SOUTH MAIN STREET 542, T. 0800-987654\",\"alias\":\"Contact info\",\"uid\":14,\"version\":\"6.2.0\",\"media\":{\"imageUrl\":\"\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"4px\",\"e\":true},\"n\":{\"v\":\"4px\"},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"126px\",\"e\":true},\"n\":{\"v\":\"126px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"45px\",\"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},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":20},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"ease\":\"power2.inOut\",\"speed\":100,\"start\":3250,\"endWithSlide\":false},\"chars\":{\"use\":true,\"delay\":\"2\",\"opacity\":\"0\"},\"words\":{\"delay\":\"2\"},\"lines\":{\"delay\":\"2\"}},\"frame_1\":{\"timeline\":{\"actionTriggered\":true,\"ease\":\"power2.inOut\",\"speed\":100,\"start\":3250,\"endWithSlide\":false,\"frameLength\":740},\"chars\":{\"use\":true,\"delay\":\"2\"},\"words\":{\"delay\":\"2\"},\"lines\":{\"delay\":\"2\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"timeline\":{\"actionTriggered\":true,\"ease\":\"nothing\",\"start\":9000,\"endWithSlide\":true,\"auto\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":3250},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":true,\"sessionFilterUsed\":false},\"idle\":{\"style\":\"Agency-LogoText\",\"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\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontFamily\":\"Lato\",\"fontSize\":{\"d\":{\"v\":\"12px\",\"e\":true},\"n\":{\"v\":\"12px\"},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"1px\"},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"1px\"}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"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\":{\"color\":\"rgba(255,255,255,1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"action\":[],\"animationoverwrite\":\"wait\"},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0}}}', '{\"version\":\"6.2.23\"}');

-- --------------------------------------------------------

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

CREATE TABLE `wp_revslider_static_slides_bkp` (
  `id` int(9) NOT NULL,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

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

CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wp_terms`
--

INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'simple', 'simple', 0),
(3, 'grouped', 'grouped', 0),
(4, 'variable', 'variable', 0),
(5, 'external', 'external', 0),
(6, 'exclude-from-search', 'exclude-from-search', 0),
(7, 'exclude-from-catalog', 'exclude-from-catalog', 0),
(8, 'featured', 'featured', 0),
(9, 'outofstock', 'outofstock', 0),
(10, 'rated-1', 'rated-1', 0),
(11, 'rated-2', 'rated-2', 0),
(12, 'rated-3', 'rated-3', 0),
(13, 'rated-4', 'rated-4', 0),
(14, 'rated-5', 'rated-5', 0),
(15, 'Uncategorized', 'uncategorized', 0),
(19, 'Menu', 'menu', 0);

-- --------------------------------------------------------

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

CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(495, 19, 0),
(496, 19, 0),
(497, 19, 0),
(498, 19, 0),
(520, 1, 0),
(529, 1, 0),
(531, 1, 0),
(533, 1, 0),
(542, 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_term_taxonomy`
--

CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 6),
(2, 2, 'product_type', '', 0, 0),
(3, 3, 'product_type', '', 0, 0),
(4, 4, 'product_type', '', 0, 0),
(5, 5, 'product_type', '', 0, 0),
(6, 6, 'product_visibility', '', 0, 0),
(7, 7, 'product_visibility', '', 0, 0),
(8, 8, 'product_visibility', '', 0, 0),
(9, 9, 'product_visibility', '', 0, 0),
(10, 10, 'product_visibility', '', 0, 0),
(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_cat', '', 0, 0),
(19, 19, 'nav_menu', '', 0, 4);

-- --------------------------------------------------------

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

CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'drcolinrusso@gmail.com'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wp_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wp_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'vc_pointers_backend_editor,vc_pointers_frontend_editor,vc_grid_item'),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:1:{s:64:\"b28c4ed5c63d26f1d231f25b7648deecf260fd255be5c761f0ad9bde4f8b8c16\";a:4:{s:10:\"expiration\";i:1606033609;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36\";s:5:\"login\";i:1605860809;}}'),
(17, 1, 'wp_user-settings', 'libraryContent=browse&posts_list_mode=excerpt&imgsize=thumbnail&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=860px&edit_element_vcUIPanelTop=108px&post_settings_vcUIPanelWidth=650&post_settings_vcUIPanelLeft=1280px&post_settings_vcUIPanelTop=74px&editor=tinymce&panel_vcUIPanelWidth=650&panel_vcUIPanelLeft=1272px&panel_vcUIPanelTop=74px'),
(18, 1, 'wp_user-settings-time', '1606027992'),
(19, 1, 'wp_dashboard_quick_press_last_post_id', '549'),
(20, 1, 'last_update', '1604979923'),
(21, 1, 'woocommerce_admin_activity_panel_inbox_last_read', '1604979920460'),
(22, 1, 'wc_last_active', '1606003200'),
(23, 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\";}'),
(24, 1, 'metaboxhidden_nav-menus', 'a:10:{i:0;s:21:\"add-post-type-product\";i:1;s:27:\"add-post-type-cubeportfolio\";i:2;s:23:\"add-post-type-portfolio\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-product_cat\";i:5;s:15:\"add-product_tag\";i:6;s:26:\"add-cubeportfolio_category\";i:7;s:22:\"add-portfolio_category\";i:8;s:18:\"add-portfolio_type\";i:9;s:25:\"add-testimonials_category\";}'),
(25, 1, 'closedpostboxes_page', 'a:0:{}'),
(26, 1, 'metaboxhidden_page', 'a:4:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),
(27, 1, 'meta-box-order_page', 'a:3:{s:4:\"side\";s:62:\"submitdiv,pageparentdiv,slider_revolution_metabox,postimagediv\";s:6:\"normal\";s:105:\"wpb_visual_composer,new-meta-boxes,revisionsdiv,postcustom,commentstatusdiv,slugdiv,authordiv,commentsdiv\";s:8:\"advanced\";s:0:\"\";}'),
(28, 1, 'screen_layout_page', '2'),
(29, 1, 'nav_menu_recently_edited', '19'),
(30, 1, '_order_count', '0'),
(32, 1, 'closedpostboxes_nav-menus', 'a:0:{}'),
(34, 1, 'meta-box-order_vc_grid_item', 'a:3:{s:4:\"side\";s:9:\"submitdiv\";s:6:\"normal\";s:27:\"wpb_visual_composer,slugdiv\";s:8:\"advanced\";s:0:\"\";}'),
(35, 1, 'screen_layout_vc_grid_item', '2');

-- --------------------------------------------------------

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

CREATE TABLE `wp_users` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'drcolinrusso@gmail.com', '$P$B7elDUF2k7.Co.5TbiF/0Gzt6X3n1f.', 'drcolinrussogmail-com', 'drcolinrusso@gmail.com', 'http://localhost:8888/wordpress', '2020-11-10 03:20:10', '', 0, 'drcolinrusso@gmail.com');

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_admin_notes` (
  `note_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content_data` longtext COLLATE utf8mb4_unicode_520_ci,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT '0',
  `layout` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `image` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `icon` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'info'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_wc_admin_notes` (`note_id`, `name`, `type`, `locale`, `title`, `content`, `content_data`, `status`, `source`, `date_created`, `date_reminder`, `is_snoozable`, `layout`, `image`, `is_deleted`, `icon`) VALUES
(1, 'wc-admin-onboarding-email-marketing', 'info', 'en_US', 'Tips, product updates, and inspiration', 'We\'re here for you - get tips, product updates and inspiration straight to your email box', '{}', 'unactioned', 'woocommerce-admin', '2020-11-10 03:45:15', NULL, 0, 'plain', '', 0, 'info'),
(2, 'wc-admin-marketing-intro', 'info', 'en_US', 'Connect with your audience', 'Grow your customer base and increase your sales with marketing tools built for WooCommerce.', '{}', 'unactioned', 'woocommerce-admin', '2020-11-10 03:45:15', NULL, 0, 'plain', '', 0, 'info'),
(3, 'ecomm-need-help-setting-up-your-store', 'info', 'en_US', 'Need help setting up your Store?', 'Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.', '{}', 'pending', 'woocommerce.com', '2020-11-01 09:45:15', NULL, 0, 'plain', '', 0, 'info'),
(4, 'woocommerce-services', 'info', 'en_US', 'WooCommerce Shipping & Tax', 'WooCommerce Shipping &amp; Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.', '{}', 'pending', 'woocommerce.com', '2020-11-01 09:45:15', NULL, 0, 'plain', '', 0, 'info'),
(5, 'ecomm-unique-shopping-experience', 'info', 'en_US', 'For a shopping experience as unique as your customers', 'Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.', '{}', 'pending', 'woocommerce.com', '2020-11-01 09:45:15', NULL, 0, 'plain', '', 0, 'info'),
(6, 'wc-admin-wc-helper-connection', 'info', 'en_US', 'Connect to WooCommerce.com', 'Connect to get important product notifications and updates.', '{}', 'unactioned', 'woocommerce-admin', '2020-11-10 03:45:16', NULL, 0, 'plain', '', 0, 'info'),
(7, 'wc-admin-onboarding-profiler-reminder', 'update', 'en_US', 'Welcome to WooCommerce! Set up your store and start selling', 'We\'re here to help you going through the most important steps to get your store up and running.', '{}', 'actioned', 'woocommerce-admin', '2020-11-08 21:45:16', NULL, 0, 'plain', '', 0, 'info'),
(8, 'wc-admin-mobile-app', 'info', 'en_US', 'Install Woo mobile app', 'Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.', '{}', 'unactioned', 'woocommerce-admin', '2020-11-12 06:50:52', NULL, 0, 'plain', '', 0, 'info'),
(9, 'wc-admin-onboarding-payments-reminder', 'info', 'en_US', 'Start accepting payments on your store!', 'Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.', '{}', 'unactioned', 'woocommerce-admin', '2020-11-15 03:45:50', NULL, 0, 'plain', '', 0, 'info'),
(10, 'wc-admin-usage-tracking-opt-in', 'info', 'en_US', 'Help WooCommerce improve with usage tracking', 'Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"http://localhost:8888/wordpress/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.', '{}', 'unactioned', 'woocommerce-admin', '2020-11-17 03:46:29', NULL, 0, 'plain', '', 0, 'info'),
(11, 'wc-admin-store-notice-giving-feedback-2', 'info', 'en_US', 'Give feedback', 'Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.', '{}', 'unactioned', 'woocommerce-admin', '2020-11-18 03:46:09', NULL, 0, 'plain', '', 0, 'info'),
(12, 'wc-admin-insight-first-sale', 'survey', 'en_US', 'Did you know?', 'A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?', '{}', 'unactioned', 'woocommerce-admin', '2020-11-18 03:46:09', NULL, 0, 'plain', '', 0, 'info'),
(13, 'wcpay-promo-2020-11', 'marketing', 'en_US', 'Manage subscriber payments from your store\'s dashboard', '<a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp20\" target=\"_blank\">WooCommerce Payments</a> now supports <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp20\" target=\"_blank\">WooCommerce Subscriptions</a>. <strong>Get 50% off transaction fees</strong> and make the most out of your holiday sales by adding WooCommerce Payments to your store. Limited-time offer. <br /><br /><em>By clicking \"Install now,\" you agree to our general <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> and promotional <a href=\"https://woocommerce.com/terms-conditions/woocommerce-payments-promotion/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp20\" target=\"_blank\">Terms of Service</a>.</em>', '{}', 'pending', 'woocommerce.com', '2020-11-19 07:45:44', NULL, 0, 'plain', '', 0, 'info'),
(14, 'wcpay-subscriptions-2020-11', 'marketing', 'en_US', 'Manage subscriber payments from your store\'s dashboard', 'Securely accept cards and manage transactions right from your dashboard with <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Payments</a>  – now supporting <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Subscriptions</a>! <br /><br /><em>By clicking \"Install now,\" you agree to our <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">Terms of Service</a>.</em>', '{}', 'pending', 'woocommerce.com', '2020-11-19 07:45:44', NULL, 0, 'plain', '', 0, 'info'),
(15, 'wc-admin-home-screen-feedback', 'info', 'en_US', 'Help us improve the WooCommerce Home screen', 'We\'d love your input to shape the future of the WooCommerce Home screen together. Feel free to share any feedback, ideas or suggestions that you have.', '{}', 'unactioned', 'woocommerce-admin', '2020-11-22 05:32:44', NULL, 0, 'plain', '', 0, 'info');

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_admin_note_actions` (
  `action_id` bigint(20) UNSIGNED NOT NULL,
  `note_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT '0',
  `actioned_text` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_wc_admin_note_actions` (`action_id`, `note_id`, `name`, `label`, `query`, `status`, `is_primary`, `actioned_text`) VALUES
(1, 1, 'yes-please', 'Yes please!', 'https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin', 'actioned', 0, ''),
(2, 2, 'open-marketing-hub', 'Open marketing hub', 'http://localhost:8888/wordpress/wp-admin/admin.php?page=wc-admin&path=/marketing', 'actioned', 0, ''),
(6, 6, 'connect', 'Connect', '?page=wc-addons&section=helper', 'unactioned', 0, ''),
(7, 7, 'continue-profiler', 'Continue Store Setup', 'http://localhost:8888/wordpress/wp-admin/admin.php?page=wc-admin&path=/setup-wizard', 'unactioned', 1, ''),
(8, 7, 'skip-profiler', 'Skip Setup', 'http://localhost:8888/wordpress/wp-admin/admin.php?page=wc-admin&reset_profiler=0', 'actioned', 0, ''),
(39, 8, 'learn-more', 'Learn more', 'https://woocommerce.com/mobile/', 'actioned', 0, ''),
(55, 9, 'view-payment-gateways', 'Learn more', 'https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/', 'actioned', 1, ''),
(65, 10, 'tracking-opt-in', 'Activate usage tracking', '', 'actioned', 1, ''),
(69, 11, 'share-feedback', 'Share feedback', 'https://automattic.survey.fm/new-onboarding-survey', 'actioned', 0, ''),
(70, 12, 'affirm-insight-first-sale', 'Yes', '', 'actioned', 0, 'Thanks for your feedback'),
(71, 12, 'deny-insight-first-sale', 'No', '', 'actioned', 0, 'Thanks for your feedback'),
(88, 15, 'home-screen-feedback-share-feedback', 'Share feedback', 'https://automattic.survey.fm/home-screen-survey', 'actioned', 0, ''),
(89, 3, 'set-up-concierge', 'Schedule free session', 'https://wordpress.com/me/concierge', 'actioned', 1, ''),
(90, 4, 'learn-more', 'Learn more', 'https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox', 'unactioned', 1, ''),
(91, 5, 'learn-more-ecomm-unique-shopping-experience', 'Learn more', 'https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox', 'actioned', 1, ''),
(92, 13, 'install-now', 'Install now', 'admin.php?page=wc-admin&action=setup-woocommerce-payments', 'actioned', 1, ''),
(93, 14, 'install-now', 'Install now', 'admin.php?page=wc-admin&action=setup-woocommerce-payments', 'actioned', 1, '');

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_category_lookup` (
  `category_tree_id` bigint(20) UNSIGNED NOT NULL,
  `category_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_wc_category_lookup` (`category_tree_id`, `category_id`) VALUES
(15, 15);

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_customer_lookup` (
  `customer_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_download_log` (
  `download_log_id` bigint(20) UNSIGNED NOT NULL,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_order_coupon_lookup` (
  `order_id` bigint(20) UNSIGNED NOT NULL,
  `coupon_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_order_product_lookup` (
  `order_item_id` bigint(20) UNSIGNED NOT NULL,
  `order_id` bigint(20) UNSIGNED NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL,
  `variation_id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) UNSIGNED DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT '0',
  `product_gross_revenue` double NOT NULL DEFAULT '0',
  `coupon_amount` double NOT NULL DEFAULT '0',
  `tax_amount` double NOT NULL DEFAULT '0',
  `shipping_amount` double NOT NULL DEFAULT '0',
  `shipping_tax_amount` double NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_order_stats` (
  `order_id` bigint(20) UNSIGNED NOT NULL,
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT '0',
  `total_sales` double NOT NULL DEFAULT '0',
  `tax_total` double NOT NULL DEFAULT '0',
  `shipping_total` double NOT NULL DEFAULT '0',
  `net_total` double NOT NULL DEFAULT '0',
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `customer_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_order_tax_lookup` (
  `order_id` bigint(20) UNSIGNED NOT NULL,
  `tax_rate_id` bigint(20) UNSIGNED NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT '0',
  `order_tax` double NOT NULL DEFAULT '0',
  `total_tax` double NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT '0',
  `downloadable` tinyint(1) DEFAULT '0',
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT '0',
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT '0',
  `average_rating` decimal(3,2) DEFAULT '0.00',
  `total_sales` bigint(20) DEFAULT '0',
  `tax_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'taxable',
  `tax_class` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT '0',
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_wc_tax_rate_classes` (`tax_rate_class_id`, `name`, `slug`) VALUES
(1, 'Reduced rate', 'reduced-rate'),
(2, 'Zero rate', 'zero-rate');

-- --------------------------------------------------------

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

CREATE TABLE `wp_wc_webhooks` (
  `webhook_id` bigint(20) UNSIGNED NOT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT '0',
  `pending_delivery` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_520_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_access` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) UNSIGNED NOT NULL,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) UNSIGNED NOT NULL,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `product_id` bigint(20) UNSIGNED NOT NULL,
  `order_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_log` (
  `log_id` bigint(20) UNSIGNED NOT NULL,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `order_item_id` bigint(20) UNSIGNED NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) UNSIGNED NOT NULL,
  `order_item_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `payment_token_id` bigint(20) UNSIGNED NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_payment_tokens` (
  `token_id` bigint(20) UNSIGNED NOT NULL,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_sessions` (
  `session_id` bigint(20) UNSIGNED NOT NULL,
  `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_expiry` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

INSERT INTO `wp_woocommerce_sessions` (`session_id`, `session_key`, `session_value`, `session_expiry`) VALUES
(7, '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:736:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2020-11-10T03:45:23+00:00\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:22:\"drcolinrusso@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}', 1606124737);

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) UNSIGNED NOT NULL,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zone_order` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) UNSIGNED NOT NULL,
  `zone_id` bigint(20) UNSIGNED NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) UNSIGNED NOT NULL,
  `instance_id` bigint(20) UNSIGNED NOT NULL,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `method_order` bigint(20) UNSIGNED NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) UNSIGNED NOT NULL,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) UNSIGNED NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) UNSIGNED NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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

CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) UNSIGNED NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tax_rate_id` bigint(20) UNSIGNED NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `wp_actionscheduler_actions`
--
ALTER TABLE `wp_actionscheduler_actions`
  ADD PRIMARY KEY (`action_id`),
  ADD KEY `hook` (`hook`),
  ADD KEY `status` (`status`),
  ADD KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  ADD KEY `args` (`args`),
  ADD KEY `group_id` (`group_id`),
  ADD KEY `last_attempt_gmt` (`last_attempt_gmt`),
  ADD KEY `claim_id` (`claim_id`);

--
-- Indexes for table `wp_actionscheduler_claims`
--
ALTER TABLE `wp_actionscheduler_claims`
  ADD PRIMARY KEY (`claim_id`),
  ADD KEY `date_created_gmt` (`date_created_gmt`);

--
-- Indexes for table `wp_actionscheduler_groups`
--
ALTER TABLE `wp_actionscheduler_groups`
  ADD PRIMARY KEY (`group_id`),
  ADD KEY `slug` (`slug`(191));

--
-- Indexes for table `wp_actionscheduler_logs`
--
ALTER TABLE `wp_actionscheduler_logs`
  ADD PRIMARY KEY (`log_id`),
  ADD KEY `action_id` (`action_id`),
  ADD KEY `log_date_gmt` (`log_date_gmt`);

--
-- Indexes for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `comment_id` (`comment_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_comments`
--
ALTER TABLE `wp_comments`
  ADD PRIMARY KEY (`comment_ID`),
  ADD KEY `comment_post_ID` (`comment_post_ID`),
  ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  ADD KEY `comment_date_gmt` (`comment_date_gmt`),
  ADD KEY `comment_parent` (`comment_parent`),
  ADD KEY `comment_author_email` (`comment_author_email`(10)),
  ADD KEY `woo_idx_comment_type` (`comment_type`);

--
-- Indexes for table `wp_cubeportfolio`
--
ALTER TABLE `wp_cubeportfolio`
  ADD PRIMARY KEY (`id`),
  ADD KEY `active` (`active`);

--
-- Indexes for table `wp_cubeportfolio_items`
--
ALTER TABLE `wp_cubeportfolio_items`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cubeportfolio_id` (`cubeportfolio_id`);

--
-- Indexes for table `wp_links`
--
ALTER TABLE `wp_links`
  ADD PRIMARY KEY (`link_id`),
  ADD KEY `link_visible` (`link_visible`);

--
-- Indexes for table `wp_options`
--
ALTER TABLE `wp_options`
  ADD PRIMARY KEY (`option_id`),
  ADD UNIQUE KEY `option_name` (`option_name`),
  ADD KEY `autoload` (`autoload`);

--
-- Indexes for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `post_id` (`post_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_posts`
--
ALTER TABLE `wp_posts`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `post_name` (`post_name`(191)),
  ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  ADD KEY `post_parent` (`post_parent`),
  ADD KEY `post_author` (`post_author`);

--
-- Indexes for table `wp_revslider_css`
--
ALTER TABLE `wp_revslider_css`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_css_bkp`
--
ALTER TABLE `wp_revslider_css_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_layer_animations`
--
ALTER TABLE `wp_revslider_layer_animations`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_layer_animations_bkp`
--
ALTER TABLE `wp_revslider_layer_animations_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_navigations`
--
ALTER TABLE `wp_revslider_navigations`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_navigations_bkp`
--
ALTER TABLE `wp_revslider_navigations_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_sliders`
--
ALTER TABLE `wp_revslider_sliders`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_sliders_bkp`
--
ALTER TABLE `wp_revslider_sliders_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_slides`
--
ALTER TABLE `wp_revslider_slides`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_slides_bkp`
--
ALTER TABLE `wp_revslider_slides_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_static_slides`
--
ALTER TABLE `wp_revslider_static_slides`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_revslider_static_slides_bkp`
--
ALTER TABLE `wp_revslider_static_slides_bkp`
  ADD UNIQUE KEY `id` (`id`);

--
-- Indexes for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `term_id` (`term_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_terms`
--
ALTER TABLE `wp_terms`
  ADD PRIMARY KEY (`term_id`),
  ADD KEY `slug` (`slug`(191)),
  ADD KEY `name` (`name`(191));

--
-- Indexes for table `wp_term_relationships`
--
ALTER TABLE `wp_term_relationships`
  ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);

--
-- Indexes for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
  ADD PRIMARY KEY (`term_taxonomy_id`),
  ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  ADD KEY `taxonomy` (`taxonomy`);

--
-- Indexes for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
  ADD PRIMARY KEY (`umeta_id`),
  ADD KEY `user_id` (`user_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wp_users`
--
ALTER TABLE `wp_users`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `user_login_key` (`user_login`),
  ADD KEY `user_nicename` (`user_nicename`),
  ADD KEY `user_email` (`user_email`);

--
-- Indexes for table `wp_wc_admin_notes`
--
ALTER TABLE `wp_wc_admin_notes`
  ADD PRIMARY KEY (`note_id`);

--
-- Indexes for table `wp_wc_admin_note_actions`
--
ALTER TABLE `wp_wc_admin_note_actions`
  ADD PRIMARY KEY (`action_id`),
  ADD KEY `note_id` (`note_id`);

--
-- Indexes for table `wp_wc_category_lookup`
--
ALTER TABLE `wp_wc_category_lookup`
  ADD PRIMARY KEY (`category_tree_id`,`category_id`);

--
-- Indexes for table `wp_wc_customer_lookup`
--
ALTER TABLE `wp_wc_customer_lookup`
  ADD PRIMARY KEY (`customer_id`),
  ADD UNIQUE KEY `user_id` (`user_id`),
  ADD KEY `email` (`email`);

--
-- Indexes for table `wp_wc_download_log`
--
ALTER TABLE `wp_wc_download_log`
  ADD PRIMARY KEY (`download_log_id`),
  ADD KEY `permission_id` (`permission_id`),
  ADD KEY `timestamp` (`timestamp`);

--
-- Indexes for table `wp_wc_order_coupon_lookup`
--
ALTER TABLE `wp_wc_order_coupon_lookup`
  ADD PRIMARY KEY (`order_id`,`coupon_id`),
  ADD KEY `coupon_id` (`coupon_id`),
  ADD KEY `date_created` (`date_created`);

--
-- Indexes for table `wp_wc_order_product_lookup`
--
ALTER TABLE `wp_wc_order_product_lookup`
  ADD PRIMARY KEY (`order_item_id`),
  ADD KEY `order_id` (`order_id`),
  ADD KEY `product_id` (`product_id`),
  ADD KEY `customer_id` (`customer_id`),
  ADD KEY `date_created` (`date_created`);

--
-- Indexes for table `wp_wc_order_stats`
--
ALTER TABLE `wp_wc_order_stats`
  ADD PRIMARY KEY (`order_id`),
  ADD KEY `date_created` (`date_created`),
  ADD KEY `customer_id` (`customer_id`),
  ADD KEY `status` (`status`(191));

--
-- Indexes for table `wp_wc_order_tax_lookup`
--
ALTER TABLE `wp_wc_order_tax_lookup`
  ADD PRIMARY KEY (`order_id`,`tax_rate_id`),
  ADD KEY `tax_rate_id` (`tax_rate_id`),
  ADD KEY `date_created` (`date_created`);

--
-- Indexes for table `wp_wc_product_meta_lookup`
--
ALTER TABLE `wp_wc_product_meta_lookup`
  ADD PRIMARY KEY (`product_id`),
  ADD KEY `virtual` (`virtual`),
  ADD KEY `downloadable` (`downloadable`),
  ADD KEY `stock_status` (`stock_status`),
  ADD KEY `stock_quantity` (`stock_quantity`),
  ADD KEY `onsale` (`onsale`),
  ADD KEY `min_max_price` (`min_price`,`max_price`);

--
-- Indexes for table `wp_wc_reserved_stock`
--
ALTER TABLE `wp_wc_reserved_stock`
  ADD PRIMARY KEY (`order_id`,`product_id`);

--
-- Indexes for table `wp_wc_tax_rate_classes`
--
ALTER TABLE `wp_wc_tax_rate_classes`
  ADD PRIMARY KEY (`tax_rate_class_id`),
  ADD UNIQUE KEY `slug` (`slug`(191));

--
-- Indexes for table `wp_wc_webhooks`
--
ALTER TABLE `wp_wc_webhooks`
  ADD PRIMARY KEY (`webhook_id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_woocommerce_api_keys`
--
ALTER TABLE `wp_woocommerce_api_keys`
  ADD PRIMARY KEY (`key_id`),
  ADD KEY `consumer_key` (`consumer_key`),
  ADD KEY `consumer_secret` (`consumer_secret`);

--
-- Indexes for table `wp_woocommerce_attribute_taxonomies`
--
ALTER TABLE `wp_woocommerce_attribute_taxonomies`
  ADD PRIMARY KEY (`attribute_id`),
  ADD KEY `attribute_name` (`attribute_name`(20));

--
-- Indexes for table `wp_woocommerce_downloadable_product_permissions`
--
ALTER TABLE `wp_woocommerce_downloadable_product_permissions`
  ADD PRIMARY KEY (`permission_id`),
  ADD KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  ADD KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  ADD KEY `order_id` (`order_id`),
  ADD KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`);

--
-- Indexes for table `wp_woocommerce_log`
--
ALTER TABLE `wp_woocommerce_log`
  ADD PRIMARY KEY (`log_id`),
  ADD KEY `level` (`level`);

--
-- Indexes for table `wp_woocommerce_order_itemmeta`
--
ALTER TABLE `wp_woocommerce_order_itemmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `order_item_id` (`order_item_id`),
  ADD KEY `meta_key` (`meta_key`(32));

--
-- Indexes for table `wp_woocommerce_order_items`
--
ALTER TABLE `wp_woocommerce_order_items`
  ADD PRIMARY KEY (`order_item_id`),
  ADD KEY `order_id` (`order_id`);

--
-- Indexes for table `wp_woocommerce_payment_tokenmeta`
--
ALTER TABLE `wp_woocommerce_payment_tokenmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `payment_token_id` (`payment_token_id`),
  ADD KEY `meta_key` (`meta_key`(32));

--
-- Indexes for table `wp_woocommerce_payment_tokens`
--
ALTER TABLE `wp_woocommerce_payment_tokens`
  ADD PRIMARY KEY (`token_id`),
  ADD KEY `user_id` (`user_id`);

--
-- Indexes for table `wp_woocommerce_sessions`
--
ALTER TABLE `wp_woocommerce_sessions`
  ADD PRIMARY KEY (`session_id`),
  ADD UNIQUE KEY `session_key` (`session_key`);

--
-- Indexes for table `wp_woocommerce_shipping_zones`
--
ALTER TABLE `wp_woocommerce_shipping_zones`
  ADD PRIMARY KEY (`zone_id`);

--
-- Indexes for table `wp_woocommerce_shipping_zone_locations`
--
ALTER TABLE `wp_woocommerce_shipping_zone_locations`
  ADD PRIMARY KEY (`location_id`),
  ADD KEY `location_id` (`location_id`),
  ADD KEY `location_type_code` (`location_type`(10),`location_code`(20));

--
-- Indexes for table `wp_woocommerce_shipping_zone_methods`
--
ALTER TABLE `wp_woocommerce_shipping_zone_methods`
  ADD PRIMARY KEY (`instance_id`);

--
-- Indexes for table `wp_woocommerce_tax_rates`
--
ALTER TABLE `wp_woocommerce_tax_rates`
  ADD PRIMARY KEY (`tax_rate_id`),
  ADD KEY `tax_rate_country` (`tax_rate_country`),
  ADD KEY `tax_rate_state` (`tax_rate_state`(2)),
  ADD KEY `tax_rate_class` (`tax_rate_class`(10)),
  ADD KEY `tax_rate_priority` (`tax_rate_priority`);

--
-- Indexes for table `wp_woocommerce_tax_rate_locations`
--
ALTER TABLE `wp_woocommerce_tax_rate_locations`
  ADD PRIMARY KEY (`location_id`),
  ADD KEY `tax_rate_id` (`tax_rate_id`),
  ADD KEY `location_type_code` (`location_type`(10),`location_code`(20));

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `wp_actionscheduler_actions`
--
ALTER TABLE `wp_actionscheduler_actions`
  MODIFY `action_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `wp_actionscheduler_claims`
--
ALTER TABLE `wp_actionscheduler_claims`
  MODIFY `claim_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5069;

--
-- AUTO_INCREMENT for table `wp_actionscheduler_groups`
--
ALTER TABLE `wp_actionscheduler_groups`
  MODIFY `group_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `wp_actionscheduler_logs`
--
ALTER TABLE `wp_actionscheduler_logs`
  MODIFY `log_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_comments`
--
ALTER TABLE `wp_comments`
  MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_cubeportfolio`
--
ALTER TABLE `wp_cubeportfolio`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;

--
-- AUTO_INCREMENT for table `wp_cubeportfolio_items`
--
ALTER TABLE `wp_cubeportfolio_items`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=825;

--
-- AUTO_INCREMENT for table `wp_links`
--
ALTER TABLE `wp_links`
  MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_options`
--
ALTER TABLE `wp_options`
  MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11633;

--
-- AUTO_INCREMENT for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1505;

--
-- AUTO_INCREMENT for table `wp_posts`
--
ALTER TABLE `wp_posts`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=692;

--
-- AUTO_INCREMENT for table `wp_revslider_css`
--
ALTER TABLE `wp_revslider_css`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=121;

--
-- AUTO_INCREMENT for table `wp_revslider_css_bkp`
--
ALTER TABLE `wp_revslider_css_bkp`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;

--
-- AUTO_INCREMENT for table `wp_revslider_layer_animations`
--
ALTER TABLE `wp_revslider_layer_animations`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_revslider_layer_animations_bkp`
--
ALTER TABLE `wp_revslider_layer_animations_bkp`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_revslider_navigations`
--
ALTER TABLE `wp_revslider_navigations`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `wp_revslider_navigations_bkp`
--
ALTER TABLE `wp_revslider_navigations_bkp`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_revslider_sliders`
--
ALTER TABLE `wp_revslider_sliders`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `wp_revslider_sliders_bkp`
--
ALTER TABLE `wp_revslider_sliders_bkp`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_revslider_slides`
--
ALTER TABLE `wp_revslider_slides`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=72;

--
-- AUTO_INCREMENT for table `wp_revslider_slides_bkp`
--
ALTER TABLE `wp_revslider_slides_bkp`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_revslider_static_slides`
--
ALTER TABLE `wp_revslider_static_slides`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `wp_revslider_static_slides_bkp`
--
ALTER TABLE `wp_revslider_static_slides_bkp`
  MODIFY `id` int(9) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_terms`
--
ALTER TABLE `wp_terms`
  MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
  MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
  MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38;

--
-- AUTO_INCREMENT for table `wp_users`
--
ALTER TABLE `wp_users`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wp_wc_admin_notes`
--
ALTER TABLE `wp_wc_admin_notes`
  MODIFY `note_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `wp_wc_admin_note_actions`
--
ALTER TABLE `wp_wc_admin_note_actions`
  MODIFY `action_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=94;

--
-- AUTO_INCREMENT for table `wp_wc_customer_lookup`
--
ALTER TABLE `wp_wc_customer_lookup`
  MODIFY `customer_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_wc_download_log`
--
ALTER TABLE `wp_wc_download_log`
  MODIFY `download_log_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_wc_tax_rate_classes`
--
ALTER TABLE `wp_wc_tax_rate_classes`
  MODIFY `tax_rate_class_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `wp_wc_webhooks`
--
ALTER TABLE `wp_wc_webhooks`
  MODIFY `webhook_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_api_keys`
--
ALTER TABLE `wp_woocommerce_api_keys`
  MODIFY `key_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_attribute_taxonomies`
--
ALTER TABLE `wp_woocommerce_attribute_taxonomies`
  MODIFY `attribute_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_downloadable_product_permissions`
--
ALTER TABLE `wp_woocommerce_downloadable_product_permissions`
  MODIFY `permission_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_log`
--
ALTER TABLE `wp_woocommerce_log`
  MODIFY `log_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_order_itemmeta`
--
ALTER TABLE `wp_woocommerce_order_itemmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_order_items`
--
ALTER TABLE `wp_woocommerce_order_items`
  MODIFY `order_item_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_payment_tokenmeta`
--
ALTER TABLE `wp_woocommerce_payment_tokenmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_payment_tokens`
--
ALTER TABLE `wp_woocommerce_payment_tokens`
  MODIFY `token_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_sessions`
--
ALTER TABLE `wp_woocommerce_sessions`
  MODIFY `session_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `wp_woocommerce_shipping_zones`
--
ALTER TABLE `wp_woocommerce_shipping_zones`
  MODIFY `zone_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_shipping_zone_locations`
--
ALTER TABLE `wp_woocommerce_shipping_zone_locations`
  MODIFY `location_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_shipping_zone_methods`
--
ALTER TABLE `wp_woocommerce_shipping_zone_methods`
  MODIFY `instance_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_tax_rates`
--
ALTER TABLE `wp_woocommerce_tax_rates`
  MODIFY `tax_rate_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wp_woocommerce_tax_rate_locations`
--
ALTER TABLE `wp_woocommerce_tax_rate_locations`
  MODIFY `location_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `wp_wc_download_log`
--
ALTER TABLE `wp_wc_download_log`
  ADD CONSTRAINT `fk_wp_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `wp_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE;

/*!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 */;
